Browse Source

对交易金额和余额进行处理

临城职教中职
ndbs 2 years ago
parent
commit
96b0ecea8d
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/MealCardRunTab/Index.js

+ 12
- 2
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/MealCardRunTab/Index.js View File

@@ -136,8 +136,18 @@ var bootstrap = function ($, learun) {
{ label: '身份证号', name: 'personId', width: 150, align: "left" },
{ label: '身份名称', name: 'identiName', width: 80, align: "left" },
{ label: '流水类型', name: 'flowtype', width: 100, align: "left" },
{ label: '交易金额', name: 'flowamount', width: 100, align: "left" },
{ label: '余额', name: 'balance', width: 100, align: "left" },
{
label: '交易金额', name: 'flowamount', width: 100, align: "left",
formatter: function (cellvalue) {
return cellvalue / 10000;
}
},
{
label: '余额', name: 'balance', width: 100, align: "left",
formatter: function (cellvalue) {
return cellvalue / 10000;
}
},
{ label: '卡号', name: 'cardNo', width: 100, align: "left" },
{ label: '中心时间', name: 'centralTm', width: 150, align: "left" },
{ label: '中心序号', name: 'centralNo', width: 100, align: "left" },


Loading…
Cancel
Save