Browse Source

[fix]

生产管理 生产领料
修改生产领料详情、生产经理、主管审批页面损耗率字段显示效果;
dev
王晓迪 2 months ago
parent
commit
ac7f23bb34
  1. 7
      ruoyi-admin/src/main/resources/templates/system/makeorderpick/detail.html
  2. 7
      ruoyi-admin/src/main/resources/templates/system/makeorderpick/taskScjlVerify.html
  3. 7
      ruoyi-admin/src/main/resources/templates/system/makeorderpick/taskSczgVerify.html

7
ruoyi-admin/src/main/resources/templates/system/makeorderpick/detail.html

@ -195,6 +195,13 @@
field: 'lossRate',
align: 'center',
title: '损耗率',
formatter: function (value, row, index) {
if (value == null || value == ''){
return "0.00%";
}
value = parseFloat(value).toFixed(2);
return value + "%";
}
},
// {
// field: 'materialNum',

7
ruoyi-admin/src/main/resources/templates/system/makeorderpick/taskScjlVerify.html

@ -331,6 +331,13 @@
field: 'lossRate',
align: 'center',
title: '损耗率',
formatter: function (value, row, index) {
if (value == null || value == ''){
return "0.00%";
}
value = parseFloat(value).toFixed(2);
return value + "%";
}
},
// {
// field: 'materialNum',

7
ruoyi-admin/src/main/resources/templates/system/makeorderpick/taskSczgVerify.html

@ -330,6 +330,13 @@
field: 'lossRate',
align: 'center',
title: '损耗率',
formatter: function (value, row, index) {
if (value == null || value == ''){
return "0.00%";
}
value = parseFloat(value).toFixed(2);
return value + "%";
}
},
// {
// field: 'materialNum',

Loading…
Cancel
Save