You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

100 lines
1.9 KiB

import request from '@/utils/request'
// 重新汇总入库商品
export function recount() {
return request({
url: '/ruku/recount',
method: 'get'
})
}
// 入库汇总信息
export function countinfo() {
return request({
url: '/ruku/countinfo',
method: 'get'
})
}
// 商品到货明细表
export function in112PagerList(data) {
return request({
url: '/ruku/in112PagerList',
data,
method: 'post',
headers: {
'Content-Type': 'application/json'
}
})
}
// 订单明细表
export function inallPagerList(data) {
return request({
url: '/supplierarrivalreport/supplierOrder',
data,
method: 'post',
headers: {
'Content-Type': 'application/json'
}
})
}
// 供货商到货汇总
export function logPagerList(data) {
return request({
url: '/supplierarrivalreport/listPage',
data,
method: 'post',
headers: {
'Content-Type': 'application/json'
}
})
}
// 烟草到货明细表
export function inall4PagerList(data) {
return request({
url: '/supplierarrivalreport/arrivalGoodsYc',
data,
method: 'post',
headers: {
'Content-Type': 'application/json'
}
})
}
// 烟草订单明细表
export function inall5PagerList(data) {
return request({
url: '/supplierarrivalreport/listPage',
data,
method: 'post',
headers: {
'Content-Type': 'application/json'
}
})
}
// 下载 加盟店入库明细表
export function jmdRkmxListDownload(data) {
return request({
url: '/ruku/jmdRkmxListDownload',
data,
method: 'post',
headers: {
'Content-Type': 'application/json'
}
})
}
// 下采购订单、入库的数据
export function ztsjZhengli() {
return request({
url: '/v1/purchaserequisition/supplierAnalysis',
method: 'post'
})
}
export function buildExcelZaiTu() {
return request({ url: '/ruku/buildExcelZaiTu' })
}