Browse Source

[fix] 委外管理

委外计划表头和操作栏采用统一样式
委外工序领料表头和操作栏采用统一样式
委外入库单列表页面表头和操作栏采用统一样式
dev
liuxiaoxu 2 months ago
parent
commit
94c8fd3640
  1. 2
      ruoyi-admin/src/main/resources/templates/erp/developModifyorderPicking/developModifyorderPicking.html
  2. 5
      ruoyi-admin/src/main/resources/templates/system/outsource_plan/outsource_plan.html
  3. 7
      ruoyi-admin/src/main/resources/templates/system/outsource_process/outsource_process.html
  4. 9
      ruoyi-admin/src/main/resources/templates/system/outsource_storage/storage.html

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

@ -79,6 +79,8 @@
restoreUrl: prefix + "/restore/{id}",
exportUrl: prefix + "/export",
modalName: "开发修改单领料",
fixedColumns: true, // 启用冻结列
fixedRightNumber: 1, // 冻结右列个数
columns: [{
checkbox: true
},

5
ruoyi-admin/src/main/resources/templates/system/outsource_plan/outsource_plan.html

@ -150,8 +150,9 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-info btn-xs ' + detailFlag + '" href="javascript:;" onclick="$.operate.detail(\'' + row.outsourcePlanId + '\')"><i class="fa fa-search"></i>详情</a> ');
return actions.join('');
actions.push('<a class=" ' + detailFlag + '" href="javascript:;" onclick="$.operate.detail(\'' + row.outsourcePlanId + '\')"><i class="fa fa-search"></i>详情</a> ');
var actionLinks = actions.join('');
return $.table.dropdownToggle(actionLinks);
}
}]
};

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

@ -103,9 +103,10 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.outsourceProcessId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-info btn-xs ' + detailFlag + '" href="javascript:;" onclick="$.operate.detail(\'' + row.outsourceProcessId + '\')"><i class="fa fa-search"></i>详情</a> ');
return actions.join('');
actions.push('<a class=" ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.outsourceProcessId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class=" ' + detailFlag + '" href="javascript:;" onclick="$.operate.detail(\'' + row.outsourceProcessId + '\')"><i class="fa fa-search"></i>详情</a> ');
var actionLinks = actions.join('');
return $.table.dropdownToggle(actionLinks);
}
}]
};

9
ruoyi-admin/src/main/resources/templates/system/outsource_storage/storage.html

@ -48,7 +48,7 @@
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:storage:export">
<a class="btn btn-success" onclick="$.table.exportExcel()" shiro:hasPermission="system:storage:export">
<i class="fa fa-download"></i> 导出
</a>
</div>
@ -77,6 +77,8 @@
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "委外入库",
fixedColumns: true, // 启用冻结列
fixedRightNumber: 1, // 冻结右列个数
columns: [{
checkbox: true
},
@ -214,8 +216,9 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-info btn-xs ' + detailFlag + '" href="javascript:;" onclick="$.operate.detail(\'' + row.warehouseStorageCode + '\')"><i class="fa fa-search"></i>详情</a> ');
return actions.join('');
actions.push('<a class=" ' + detailFlag + '" href="javascript:;" onclick="$.operate.detail(\'' + row.warehouseStorageCode + '\')"><i class="fa fa-search"></i>详情</a> ');
var actionLinks = actions.join('');
return $.table.dropdownToggle(actionLinks);
}
}]
};

Loading…
Cancel
Save