Browse Source

修复:bom审核修改经理审核可全部权限。修改审核页面跳转判定。

dev
zhangsiqi 4 months ago
parent
commit
edcd341d33
  1. 1
      ruoyi-admin/src/main/resources/templates/erp/bom/add.html
  2. 2
      ruoyi-admin/src/main/resources/templates/erp/bom/bom.html
  3. 22
      ruoyi-admin/src/main/resources/templates/erp/bom/detail.html
  4. 2
      ruoyi-admin/src/main/resources/templates/erp/bom/edit.html
  5. 1
      ruoyi-admin/src/main/resources/templates/erp/bom/taskGcjlVerify.html

1
ruoyi-admin/src/main/resources/templates/erp/bom/add.html

@ -168,6 +168,7 @@
"<option value='" + usertData[i].loginName + "'>" + usertData[i].loginName + "</option>"); "<option value='" + usertData[i].loginName + "'>" + usertData[i].loginName + "</option>");
} }
$("#selectEngineer").val(loginName); $("#selectEngineer").val(loginName);
$("input[name='engineer']").val(loginName);
} else { } else {
$.modal.msgError(res.msg); $.modal.msgError(res.msg);
} }

2
ruoyi-admin/src/main/resources/templates/erp/bom/bom.html

@ -220,7 +220,7 @@
// 有待办人展示审批按钮, // 有待办人展示审批按钮,
if (row.todoUserId) { if (row.todoUserId) {
var todoUserIdList = row.todoUserId.split(","); var todoUserIdList = row.todoUserId.split(",");
if(todoUserIdList.includes(loginName) || todoUserIdList.includes("admin")){ if(todoUserIdList.includes(loginName)){
var nodeName = row.taskName=='驳回调整'?' 调整申请':' 审批'; var nodeName = row.taskName=='驳回调整'?' 调整申请':' 审批';
actions.push('<a class="btn btn-success btn-xs" href="javascript:void(0)" onclick="showVerifyDialog(\'' + prefix + '\',\'' + row.taskId + '\', \'' + row.taskName+"-"+row.instanceTypeName+"申请" + '\')"><i class="fa fa-edit"></i> '+nodeName+'</a> '); actions.push('<a class="btn btn-success btn-xs" href="javascript:void(0)" onclick="showVerifyDialog(\'' + prefix + '\',\'' + row.taskId + '\', \'' + row.taskName+"-"+row.instanceTypeName+"申请" + '\')"><i class="fa fa-edit"></i> '+nodeName+'</a> ');
} }

22
ruoyi-admin/src/main/resources/templates/erp/bom/detail.html

@ -231,19 +231,19 @@
editable : { editable : {
editor: { editor: {
defaultValue: '%', defaultValue: '%',
title: '损耗率(%)', title : '损耗率(%)',
mode: 'inline', mode:'inline',
type: 'text', type: 'text',
// 编辑时同样附带百分比符号 // 编辑时同样附带百分比符号
formatter: function (value) { formatter: function(value) {
return value + '%'; return value + '%';
}, },
// 编辑后去除百分比符号 // 编辑后去除百分比符号
custom_getter: function (value) { custom_getter: function(value) {
return value.replace('%', ''); return value.replace('%', '');
} }
}, },
validate : function (value) { validate : function(value) {
if (!value) { if (!value) {
return '损耗率不能为空'; return '损耗率不能为空';
} }
@ -256,13 +256,19 @@
if (num < 0 || num > 100) { if (num < 0 || num > 100) {
return '损耗率必须大于等于0小于等于100'; return '损耗率必须大于等于0小于等于100';
} }
} },
}, },
formatter: function (value,row,index){ formatter: function (value,row,index){
if(value == null){ if (value == null || value == ''){
return "%"; return "%";
} }
return value + "%"; const regex = /(\d+(?:\.\d+)?)%/g; // 创建正则表达式,g标志表示全局匹配
const match = value.match(regex); // 使用match方法查找所有匹配
if (match) {
return value;
}else{
return value + "%";
}
}, },
}, },
{ {

2
ruoyi-admin/src/main/resources/templates/erp/bom/edit.html

@ -290,7 +290,7 @@
{ {
field: 'processMethod', field: 'processMethod',
align: 'center', align: 'center',
title: '半成品类型', title: '加工方式',
formatter: function(value, row, index) { formatter: function(value, row, index) {
return $.table.selectDictLabel(processMethodDatas, value); return $.table.selectDictLabel(processMethodDatas, value);
} }

1
ruoyi-admin/src/main/resources/templates/erp/bom/taskGcjlVerify.html

@ -263,7 +263,6 @@
$.operate.save(prefix + "/complete/" + taskId, $('#form-edit').serialize()); $.operate.save(prefix + "/complete/" + taskId, $('#form-edit').serialize());
} }
} }
</script> </script>
</body> </body>
</html> </html>
Loading…
Cancel
Save