浏览代码

经费开支优化

新疆警官学校中职
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);
}
},
],


正在加载...
取消
保存