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' }) } // 112仓入库信息分页查询 export function in112PagerList(data) { return request({ url: '/ruku/in112PagerList', data, method: 'post', headers: { 'Content-Type': 'application/json' } }) } // 所有入库信息分页查询 export function inallPagerList(data) { return request({ url: '/ruku/inallPagerList', data, method: 'post', headers: { 'Content-Type': 'application/json' } }) } // 入库单导入日志分页查询 export function logPagerList(data) { return request({ url: '/ruku/logPagerList', data, method: 'post', headers: { 'Content-Type': 'application/json' } }) } // 加盟店入库明细表按天查询 export function jmdRkmxList(data) { return request({ url: '/ruku/jmdRkmxList', 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' }) }