领料,退料

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

View File

@ -156,7 +156,7 @@ function initTable() {
},
{
field: "proName",
width: '20%',
width: '18%',
title: "工程名称",
unresize: true,
align: "center",
@ -171,21 +171,21 @@ function initTable() {
{
field: "name",
title: "物资名称",
width: '13%',
width: '12%',
unresize: true,
align: "center",
},
{
field: "model",
title: "规格型号",
width: '13%',
width: '11%',
unresize: true,
align: "center",
},
{
field: "unit",
title: "单位",
width: '8%',
width: '6%',
unresize: true,
align: "center",
},
@ -206,6 +206,16 @@ function initTable() {
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],