|
@ -4358,7 +4358,6 @@ export function getPlanByNumber(params) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询生产线
|
|
|
//查询生产线
|
|
|
export function getProductionlineAndWorkStation() { |
|
|
export function getProductionlineAndWorkStation() { |
|
|
return request({ |
|
|
return request({ |
|
@ -4367,3 +4366,22 @@ export function getProductionlineAndWorkStation() { |
|
|
data: {}, |
|
|
data: {}, |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 打印机列表 |
|
|
|
|
|
*/ |
|
|
|
|
|
export function getPrintList(params) { |
|
|
|
|
|
return request({ |
|
|
|
|
|
url: baseApi + "/wms/print/printerList", |
|
|
|
|
|
method: "post" |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
/** |
|
|
|
|
|
* 打印模板列表 |
|
|
|
|
|
*/ |
|
|
|
|
|
export function getPrintTemplateList(params) { |
|
|
|
|
|
return request({ |
|
|
|
|
|
url: baseApi + "/wms/print/modelList", |
|
|
|
|
|
method: "post" |
|
|
|
|
|
}); |
|
|
|
|
|
} |