领料,退料

This commit is contained in:
马三炮 2026-02-02 18:16:22 +08:00
parent 2027d187de
commit fb8cf8c1bb
2 changed files with 20 additions and 10 deletions

View File

@ -170,7 +170,7 @@ function initTable() {
{ {
field: "remark", field: "remark",
title: "备注", title: "备注",
width: '10%', // 微调宽度,适配新增字段 width: '15%', // 微调宽度,适配新增字段
unresize: true, unresize: true,
align: "center", align: "center",
templet: function (d) { templet: function (d) {
@ -188,7 +188,7 @@ function initTable() {
{ {
field: "status", field: "status",
title: "发货状态", title: "发货状态",
width: '8%', width: '10%',
unresize: true, unresize: true,
align: "center", align: "center",
templet: function (d) { templet: function (d) {
@ -203,7 +203,7 @@ function initTable() {
} }
}, },
}, },
{ /*{
field: "cgNum", field: "cgNum",
width: '7%', width: '7%',
title: "采购数量", title: "采购数量",
@ -230,7 +230,7 @@ function initTable() {
return ' ¥ ' + (d.money ? d.money : 0); return ' ¥ ' + (d.money ? d.money : 0);
} }
}, },
}, },*/
{ {
field: "lkNum", field: "lkNum",
title: "利库数量", title: "利库数量",
@ -248,7 +248,7 @@ function initTable() {
// 新增:进度条字段(核心实现) // 新增:进度条字段(核心实现)
{ {
title: "完成进度", title: "完成进度",
width: '12%', // 从12%加宽到15%,足够显示进度条+百分比,核心解决遮挡 width: '19%', // 从12%加宽到15%,足够显示进度条+百分比,核心解决遮挡
align: "center", align: "center",
unresize: true, unresize: true,
templet: function (d) { templet: function (d) {

View File

@ -156,7 +156,7 @@ function initTable() {
}, },
{ {
field: "proName", field: "proName",
width: '20%', width: '18%',
title: "工程名称", title: "工程名称",
unresize: true, unresize: true,
align: "center", align: "center",
@ -171,21 +171,21 @@ function initTable() {
{ {
field: "name", field: "name",
title: "物资名称", title: "物资名称",
width: '13%', width: '12%',
unresize: true, unresize: true,
align: "center", align: "center",
}, },
{ {
field: "model", field: "model",
title: "规格型号", title: "规格型号",
width: '13%', width: '11%',
unresize: true, unresize: true,
align: "center", align: "center",
}, },
{ {
field: "unit", field: "unit",
title: "单位", title: "单位",
width: '8%', width: '6%',
unresize: true, unresize: true,
align: "center", align: "center",
}, },
@ -206,6 +206,16 @@ function initTable() {
return d.totalBack; return d.totalBack;
}, },
}, },
{
field: "manager",
title: "经办人",
width: '8%',
align: "center",
unresize: true,
templet: function (d) {
return d.manager;
},
},
], ],
], ],
limits: [10, 15, 20, 25, 50, 100], limits: [10, 15, 20, 25, 50, 100],