mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
- Reactivate module - move files in views and models dirs - create README.rst from description - make list of contributors - remove change for invoice created on picking as it doesn't exist anymore in Odoo Community - move overrides in bank statement as logic moved in move lines - adapt view inheritance to not depends on string attribute - Fix definition of javascript customization in reconciliation - Fix display transaction_ref label on move line view - Fix move proposition for reconcile. search with transaction_ref - Use short headers - Update README for bug tracking
15 lines
428 B
JavaScript
15 lines
428 B
JavaScript
odoo.define('base_transaction_id.base_transaction_id', function (require) {
|
|
|
|
var AccountReconciliation = require('account.reconciliation');
|
|
|
|
AccountReconciliation.bankStatementReconciliation.include({
|
|
decorateMoveLine: function(line) {
|
|
this._super(line);
|
|
if (line.transaction_ref) {
|
|
line.q_label += ' (' + line.transaction_ref + ')';
|
|
}
|
|
},
|
|
});
|
|
|
|
});
|