Commit 9f091410 authored by neo's avatar neo

[bugfix] fixed vat item page use lower field name

parent e3145f6a
......@@ -584,10 +584,10 @@
enableColumnMenus: false,
columnDefs: [
{ name: $translate.instant('ImportErrorPopUpNoCol'), width: '10%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.index}}<span></div>' },
{ name: $translate.instant('InvoiceHWMC'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span title="{{row.entity.productionName}}">{{row.entity.SPMC}}<span></div>' },
{ name: $translate.instant('InvoiceJE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.JE}}<span></div>' },
{ name: $translate.instant('InvoiceSL'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{(row.entity.taxRate*100).formatAmount(2)}}%<span></div>' },
{ name: $translate.instant('InvoiceSE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.SE}}<span></div>' }
{ name: $translate.instant('InvoiceHWMC'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span title="{{row.entity.spmc}}">{{row.entity.spmc}}<span></div>' },
{ name: $translate.instant('InvoiceJE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.je}}<span></div>' },
{ name: $translate.instant('InvoiceSL'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{(row.entity.slv).formatAmount(2)}}%<span></div>' },
{ name: $translate.instant('InvoiceSE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.se}}<span></div>' }
]
};
......
......@@ -32322,10 +32322,10 @@ vatModule.controller('VatPreviewInputInvoiceController', ['$scope', '$log', '$tr
enableColumnMenus: false,
columnDefs: [
{ name: $translate.instant('ImportErrorPopUpNoCol'), width: '10%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.index}}<span></div>' },
{ name: $translate.instant('InvoiceHWMC'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span title="{{row.entity.productionName}}">{{row.entity.SPMC}}<span></div>' },
{ name: $translate.instant('InvoiceJE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.JE}}<span></div>' },
{ name: $translate.instant('InvoiceSL'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{(row.entity.taxRate*100).formatAmount(2)}}%<span></div>' },
{ name: $translate.instant('InvoiceSE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.SE}}<span></div>' }
{ name: $translate.instant('InvoiceHWMC'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span title="{{row.entity.spmc}}">{{row.entity.spmc}}<span></div>' },
{ name: $translate.instant('InvoiceJE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.je}}<span></div>' },
{ name: $translate.instant('InvoiceSL'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{(row.entity.slv).formatAmount(2)}}%<span></div>' },
{ name: $translate.instant('InvoiceSE'), width: '23%', cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.se}}<span></div>' }
]
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment