技术中心部分修改,添加库存系统

This commit is contained in:
hedekun
2018-11-16 09:08:57 +08:00
parent 666c65dd0f
commit 385816311b
49 changed files with 7923 additions and 7 deletions

View File

@@ -0,0 +1,24 @@
import request from '@/utils/request'
// 替换单查询
export function searchSubstitutedCard() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_替换件_替换单查询'
}
})
}
// 替换件到货
export function SubstitutedCome(data1, data2, data3) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '库存管理_替换件_替换件到货',
param: '替换单流水号=' + data1 + '&物料与货位对照流水号=' + data2 + '&替换数量=' + data3
}
})
}