diff --git a/account_statement_base_completion/data.xml b/account_statement_base_completion/data.xml index 3757e4fd..e00ea323 100644 --- a/account_statement_base_completion/data.xml +++ b/account_statement_base_completion/data.xml @@ -1,6 +1,6 @@ - + Match from line label (based on partner field 'Bank Statement Label') diff --git a/account_statement_base_import/statement_view.xml b/account_statement_base_import/statement_view.xml index b1957dd1..b3ced577 100644 --- a/account_statement_base_import/statement_view.xml +++ b/account_statement_base_import/statement_view.xml @@ -29,6 +29,7 @@ account.bank.statement form + diff --git a/account_statement_ext/statement.py b/account_statement_ext/statement.py index 95459d4f..b35ebc95 100644 --- a/account_statement_ext/statement.py +++ b/account_statement_ext/statement.py @@ -97,7 +97,7 @@ class AccountBankSatement(Model): _columns = { 'profile_id': fields.many2one('account.statement.profil', - 'Profil', required=True, states={'draft': [('readonly', False)]}), + 'Profil', required=True, readonly=True, states={'draft': [('readonly', False)]}), 'credit_partner_id': fields.related( 'profile_id', 'partner_id', diff --git a/account_statement_ext/statement_view.xml b/account_statement_ext/statement_view.xml index 0c492cc9..c9590965 100644 --- a/account_statement_ext/statement_view.xml +++ b/account_statement_ext/statement_view.xml @@ -15,12 +15,14 @@ + account.move.line.search.add_field account.move.line search + diff --git a/account_statement_transactionid_completion/data.xml b/account_statement_transactionid_completion/data.xml index 09460078..d92143dc 100644 --- a/account_statement_transactionid_completion/data.xml +++ b/account_statement_transactionid_completion/data.xml @@ -1,6 +1,6 @@ - + Match from line reference (based on transaction ID) diff --git a/account_statement_transactionid_completion/statement.py b/account_statement_transactionid_completion/statement.py index ff25cc28..d8cf1199 100644 --- a/account_statement_transactionid_completion/statement.py +++ b/account_statement_transactionid_completion/statement.py @@ -34,7 +34,7 @@ class AccountStatementCompletionRule(Model): def _get_functions(self, cr, uid, context=None): res = super (AccountStatementCompletionRule, self)._get_functions( cr, uid, context=context) - res.append(('get_from_transaction_id_and_so', 'From line reference (based on SO transaction ID')) + res.append(('get_from_transaction_id_and_so', 'From line reference (based on SO transaction ID)')) return res _columns={