rev:新增老车间工单下发和打印功能

This commit is contained in:
2023-05-23 13:57:20 +08:00
parent 6ccc8bd551
commit 38feec1324
7 changed files with 408 additions and 168 deletions

View File

@@ -0,0 +1,19 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/mpsSaleOrderIcExt',
method: 'post',
data
})
}
export function getExtList(data) {
return request({
url: 'api/mpsSaleOrderIcExt/getExtList',
method: 'post',
data
})
}
export default { add, getExtList }

View File

@@ -65,7 +65,7 @@ export function getTable(data) {
export function openStart(data) {
return request({
url: 'api/produceWorkorder/openStart',
url: 'api/produceshiftorder/openStart',
method: 'post',
data
})