feat(wms): 新增原料材质与钢卷类型不匹配查询及修复功能
refactor(crm): 重构销售员管理界面为左右分栏布局 style(wms): 优化钢卷发货状态显示为单选按钮组 chore: 新增考勤请求工具类文件
This commit is contained in:
@@ -397,4 +397,30 @@ export function getCoilStatisticsList(params) {
|
||||
method: 'get',
|
||||
params,
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询原料材质与钢卷类型不匹配的钢卷
|
||||
*/
|
||||
export function listMismatchedItemCoil(params) {
|
||||
return request({
|
||||
url: '/wms/materialCoil/queryMaterialMismatchCoils',
|
||||
method: 'get',
|
||||
timeout: 600000,
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 修复原料材质与钢卷类型不匹配的钢卷
|
||||
*/
|
||||
export function fixMismatchedItemCoil(coilId) {
|
||||
return request({
|
||||
url: '/wms/materialCoil/fixMaterialMismatch',
|
||||
method: 'put',
|
||||
timeout: 600000,
|
||||
params: {
|
||||
coilId
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user