'车间采购模块'

This commit is contained in:
liushuai
2018-11-15 11:31:19 +08:00
parent 666c65dd0f
commit 436d2a8691
60 changed files with 5898 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
import request from '@/utils/request'
// 初始化项目
export function initProject() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: 'PDM_项目名称_查询数据'
}
})
}
// 初始化项目金额统计表
export function searchProjectTotal(num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '采购管理_项目总价_明细_查询数据',
param: `项目流水号=${num}`
}
})
}
// 初始化项目金额统计表
export function searchProjectTotal1(num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '车间采购管理_项目总价_明细_查询数据',
param: `项目流水号=${num}`
}
})
}