Переглянути джерело

经费开支优化

新疆警官学校中职
ndbs 1 рік тому
джерело
коміт
43a2f6066a
2 змінених файлів з 4 додано та 4 видалено
  1. +2
    -2
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/FundsApply/Form.js
  2. +2
    -2
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/FundsApply/FormView.js

+ 2
- 2
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/FundsApply/Form.js Переглянути файл

@@ -125,12 +125,12 @@ var bootstrap = function ($, learun) {
},
{
label: '单价(元)', name: 'Price', width: 150, align: 'left', formatter: function (cellvalue) {
return cellvalue.toString().indexOf(".") > 0 ? cellvalue : cellvalue.toFixed(2);
return cellvalue.toString().indexOf(".") > 0 ? Number(cellvalue).toFixed(2) : Number(cellvalue).toFixed(2);
}
},
{
label: '金额(元)', name: 'Amount', width: 150, align: 'left', formatter: function (cellvalue) {
return cellvalue.toString().indexOf(".") > 0 ? cellvalue : cellvalue.toFixed(2);
return cellvalue.toString().indexOf(".") > 0 ? Number(cellvalue).toFixed(2) : Number(cellvalue).toFixed(2);
}
},
],


+ 2
- 2
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/FundsApply/FormView.js Переглянути файл

@@ -125,12 +125,12 @@ var bootstrap = function ($, learun) {
},
{
label: '单价(元)', name: 'Price', width: 150, align: 'left', formatter: function (cellvalue) {
return cellvalue.toString().indexOf(".") > 0 ? cellvalue : cellvalue.toFixed(2);
return cellvalue.toString().indexOf(".") > 0 ? Number(cellvalue).toFixed(2) : Number(cellvalue).toFixed(2);
}
},
{
label: '金额(元)', name: 'Amount', width: 150, align: 'left', formatter: function (cellvalue) {
return cellvalue.toString().indexOf(".") > 0 ? cellvalue : cellvalue.toFixed(2);
return cellvalue.toString().indexOf(".") > 0 ? Number(cellvalue).toFixed(2) : Number(cellvalue).toFixed(2);
}
},
],


Завантаження…
Відмінити
Зберегти