mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
Now, only the name and the ref are displayed. Mostly useful with https://github.com/OCA/bank-statement-reconcile/pull/54
12 lines
363 B
JavaScript
12 lines
363 B
JavaScript
openerp.base_transaction_id = function (instance) {
|
|
|
|
instance.web.account.bankStatementReconciliationLine.include({
|
|
decorateMoveLine: function(line, currency_id) {
|
|
this._super(line, currency_id);
|
|
if (line.transaction_ref) {
|
|
line.q_label += ' (' + line.transaction_ref + ')';
|
|
}
|
|
},
|
|
});
|
|
};
|