feat: Se añade línea para descuadres negatios en el cierre de caja, se añade cuenta en configuración para descuadres positivios
This commit is contained in:
@@ -24,6 +24,12 @@ class Configuration(ModelSingleton, ModelView, ModelSQL):
|
||||
('closed', '!=', True),
|
||||
],)
|
||||
|
||||
account_mismatch_positive = fields.Many2One('account.account', "Account Mismatch Positivo",
|
||||
domain=[
|
||||
('company', '=', Eval('company', 0)),
|
||||
('type', '!=', None),
|
||||
('closed', '!=', True),
|
||||
],)
|
||||
@staticmethod
|
||||
def default_currency():
|
||||
Company = Pool().get('company.company')
|
||||
|
||||
Reference in New Issue
Block a user