Browse Source

处理打印都为断号数据

master
lvzb 1 year ago
parent
commit
99c1d76479
  1. 2
      src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application/PrintTable/WaitPrintAppService.cs
  2. 2
      vue/src/views/pg-fis/basedate/m100Online/normalPritIndex.vue

2
src/Modules/新版JIT或JIS系统服务端/src/WY.NewJit.Application/PrintTable/WaitPrintAppService.cs

@ -443,7 +443,7 @@ namespace WY.NewJit.PrintTable
mbObj.BeginHostSN = tempLst[0].HostSN.ToString(); mbObj.BeginHostSN = tempLst[0].HostSN.ToString();
mbObj.EndHostSN = tempLst[tempLst.Count - 1].HostSN.ToString(); mbObj.EndHostSN = tempLst[tempLst.Count - 1].HostSN.ToString();
} }
mbObj.MinOnlineTime = tempLst.Min(itm => itm.OnlineTime); //本单据最早的上线时间 mbObj.MinOnlineTime = tempLst.Count>0? tempLst.Min(itm => itm.OnlineTime):null; //本单据最早的上线时间
int posNum = 0; int posNum = 0;
string promMsg; //报表数据异常提示信息 string promMsg; //报表数据异常提示信息

2
vue/src/views/pg-fis/basedate/m100Online/normalPritIndex.vue

@ -282,7 +282,7 @@
:gutter="0" :gutter="0"
> >
<template slot="header" slot-scope="scope"> <template slot="header" slot-scope="scope">
{{ scope.column.label }} <div :style="{'color':scope.row.BillStatus==2?'#333':'red'}"> {{ scope.column.label }}</div>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>

Loading…
Cancel
Save