This commit is contained in:
liushuai
2019-11-28 15:54:57 +08:00
parent be524dc8c1
commit bc92463932
6 changed files with 524 additions and 455 deletions

View File

@@ -26,14 +26,14 @@ export function searchInvoiceDetail(num) {
})
}
// 发票增加
export function addInvoice(time1, money, send, remark, num3) {
export function addInvoice(time1, money, send, remark, num3, num4) {
return request({
url: '',
method: 'post',
data: {
type: '2',
name: '备料管理_发票_增加数据',
param: `开票时间=${time1}&开票金额=${money}&发票号=${send}&备注=${remark}&供应商=${num3}`
param: `开票时间=${time1}&开票金额=${money}&发票号=${send}&备注=${remark}&供应商=${num3}&到货单流水号组=${num4}`
}
})
}