DuGuYang 2 лет назад
Родитель
Сommit
1c75abd1bf

+ 4 - 0
Areas/Admin/Controllers/MainServer/PreSendStockDetailController.cs

@@ -192,6 +192,10 @@ namespace MySystem.Areas.Admin.Controllers
                 int AuthFlag = int.Parse(function.CheckInt(dic["AuthFlag"].ToString()));
                 if (AuthFlag == 0) dic["PayMode"] = "否";
                 if (AuthFlag == 1) dic["PayMode"] = "是";
+                //是否预扣标记
+                int WithholdFlag = int.Parse(function.CheckInt(dic["WithholdFlag"].ToString()));
+                if (WithholdFlag == 0) dic["WithholdFlagName"] = "否";
+                if (WithholdFlag == 1) dic["WithholdFlagName"] = "是";
 
             }
             return Json(obj);

+ 1 - 0
wwwroot/layuiadmin/modules_main/PreSendStockDetail_Admin.js

@@ -139,6 +139,7 @@ layui.config({
             , { field: 'FromStoreIdStoreName', width: 200, title: '出货仓库名称', sort: true }
             , { field: 'CancelFlagName', width: 200, title: '撤回标记', sort: true }
             , { field: 'CancelDate', width: 200, title: '撤回时间', sort: true }
+            , { field: 'WithholdFlagName', width: 200, title: '预扣标记', sort: true }
             // , { field: 'Sort', fixed: 'right', title: '排序', width: 80, edit: 'text' }s
             , { title: '操作', width: 180, align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
         ]]