瀏覽代碼

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

临城职教中职
ndbs 2 年之前
父節點
當前提交
96b0ecea8d
共有 1 個檔案被更改,包括 12 行新增2 行删除
  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 查看文件

@@ -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…
取消
儲存