mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
@@ -1376,7 +1376,12 @@ odoo.define("account.ReconciliationModel", function (require) {
|
||||
_formatMany2ManyTags: function (value) {
|
||||
var res = [];
|
||||
for (var i = 0, len = value.length; i < len; i++) {
|
||||
res[i] = {id: value[i][0], display_name: value[i][1]};
|
||||
res.push({
|
||||
id: value[i],
|
||||
display_name: this.analyticTags[value[i]]
|
||||
? this.analyticTags[value[i]].display_name
|
||||
: "",
|
||||
});
|
||||
}
|
||||
return res;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user