123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392 |
- import { axios } from '@/utils/request'
- // 获取开单退货单表头
- export const salesReportReturnTitle = (params) => {
- return axios({
- url: '/report/salesReturnBillReport/reportTitle',
- data: params,
- method: 'get'
- })
- }
- // 开单退货单报表
- export const salesReportReturnBillList = (params) => {
- const url = `/report/salesReturnBillReport/reportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 开单退货单报表 合计
- export const salesReportReturnBillCount = (params) => {
- return axios({
- url: '/report/salesReturnBillReport/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 获取开单退货表头
- export const salesReturnReportTitle = (params) => {
- return axios({
- url: '/report/salesReturnReport/reportTitle',
- data: params,
- method: 'get'
- })
- }
- // 开单退货报表 列表
- export const salesReportReturnList = (params) => {
- const url = `/report/salesReturnReport/reportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 开单退货报表 合计
- export const salesReportReturnCount = (params) => {
- return axios({
- url: '/report/salesReturnReport/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 实售退货报表 biao题
- export const salesReportReturnRebateTitle = (params) => {
- return axios({
- url: '/report/returnSsthReport/reportTitle',
- data: params,
- method: 'get'
- })
- }
- // 实售退货报表
- export const salesReportReturnRebateList = (params) => {
- const url = `/report/returnSsthReport/reportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 实售退货报表 合计
- export const salesReportReturnRebateCount = (params) => {
- return axios({
- url: '/report/returnSsthReport/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 销售退货单报表
- export const reportSalesReturnList = (params) => {
- const url = `/report/reportSalesReturn/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 销售退货单报表 合计
- export const reportSalesReturnCount = (params) => {
- return axios({
- url: '/report/reportSalesReturn/queryCount',
- data: params,
- method: 'post'
- })
- }
- // 销售退货明细报表
- export const reportSalesReturnDetailList = (params) => {
- const url = `/report/reportSalesReturn/detail/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 销售退货明细报表 合计
- export const reportSalesReturnDetailCount = (params) => {
- return axios({
- url: '/report/reportSalesReturn/detail/queryCount',
- data: params,
- method: 'post'
- })
- }
- // 销售退货明细报表 导出
- export const reportSalesReturnDetailExport = (params) => {
- return axios({
- url: '/report/reportSalesReturn/detail/exportExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 总部差价明细报表
- export const headRebateDetailReportList = (params) => {
- const url = `/report/headRebateDetailReport/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 总部差价明细报表 合计
- export const headRebateDetailReportCount = (params) => {
- return axios({
- url: '/report/headRebateDetailReport/querySum',
- data: params,
- method: 'post'
- })
- }
- // 总部差价明细报表导出
- export const headRebateDetailReportExport = (params) => {
- return axios({
- url: '/report/headRebateDetailReport/export',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 差价明细报表
- export const reportRebateReportList = (params) => {
- const url = `/report/reportRebate/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 差价明细报表 合计
- export const reportRebateCount = (params) => {
- return axios({
- url: '/report/reportRebate/queryCount',
- data: params,
- method: 'post'
- })
- }
- // 差价明细报表 导出
- export const reportRebateExport = (params) => {
- return axios({
- url: '/report/reportRebate/export',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 销售退货单 导出
- export const salesReturnsExport = (params) => {
- return axios({
- url: '/report/reportSalesReturn/exportExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 销售退货明细 导出
- export const salesReturnDetailExport = (params) => {
- return axios({
- url: '/report/reportRebate/export',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 开单销售单 导出
- export const salesSlipExport = (params) => {
- return axios({
- url: '/report/salesKdxxd/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 开单退货单 导出
- export const returnSlipExport = (params) => {
- return axios({
- url: 'report/salesReturnBillReport/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 开单销售 导出
- export const salesAmountExport = (params) => {
- return axios({
- url: '/report/salesKdxx/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 实售销售 导出
- export const actualSalesExport = (params) => {
- return axios({
- url: '/report/salesSsxs/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 开单退货 导出
- export const billingReturnExport = (params) => {
- return axios({
- url: '/report/salesReturnReport/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 实售退货 导出
- export const salesReturnExport = (params) => {
- return axios({
- url: '/report/returnSsthReport/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 销售明细(下推统计)报表
- export const reportSalesBillDetailList = (params) => {
- const url = `/report/reportDispatchBillDetail/reportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 销售明细(下推统计)报表 合计
- export const reportSalesBillDetailCount = (params) => {
- return axios({
- url: '/report/reportDispatchBillDetail/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 销售明细(下推统计)报表 导出
- export const reportSalesBillDetailExport = (params) => {
- return axios({
- url: '/report/reportDispatchBillDetail/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 销售(开单统计)报表
- export const reportSalesBillList = (params) => {
- const url = `/report/reportDispatchBill/reportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 销售(开单统计)报表 合计
- export const reportSalesBillCount = (params) => {
- return axios({
- url: '/report/reportDispatchBill/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 销售(开单统计)报表 导出
- export const reportSalesBillExport = (params) => {
- return axios({
- url: '/report/reportDispatchBill/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 入库单报表
- export const reportStockPutList = (params) => {
- const url = `/report/reportStockPut/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 入库单报表 合计
- export const reportStockPutCount = (params) => {
- return axios({
- url: '/report/reportStockPut/queryCount',
- data: params,
- method: 'post'
- })
- }
- // 入库单报表 导出
- export const reportStockPutExport = (params) => {
- return axios({
- url: '/report/reportStockPut/exportExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 入库单明细报表
- export const reportStockPutDetailList = (params) => {
- const url = `/report/reportStockPut/detail/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 入库单明细报表 合计
- export const reportStockPutDetailCount = (params) => {
- return axios({
- url: '/report/reportStockPut/detail/queryCount',
- data: params,
- method: 'post'
- })
- }
- // 入库单明细报表 导出
- export const reportStockPutDetailExport = (params) => {
- return axios({
- url: '/report/reportStockPut/detail/exportExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 获取销售交单报表 表头
- export const salesXsjdReportTitle = (params) => {
- return axios({
- url: '/report/salesXsjd/reportTitle',
- data: params,
- method: 'get'
- })
- }
- // 销售交单报表
- export const reportDispatchReportList = (params) => {
- const url = `/report/salesXsjd/reportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 销售交单报表 合计
- export const reportDispatchReportCount = (params) => {
- return axios({
- url: '/report/salesXsjd/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 销售交单报表 导出
- export const reportDispatchReportExport = (params) => {
- return axios({
- url: '/report/salesXsjd/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 调拨交单报表
- export const reportAllocateDbjdReportList = (params) => {
- const url = `/report/allocateReport/dbjd/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 调拨交单报表 合计
- export const reportAllocateDbjdReportCount = (params) => {
- return axios({
- url: '/report/allocateReport/dbjd/queryCount',
- data: params,
- method: 'post'
- })
- }
- // 调拨交单报表 导出
- export const reportAllocateDbjdReportExport = (params) => {
- return axios({
- url: '/report/allocateReport/dbjd/export',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 获取退货交单报表 表头
- export const returnDocReportTitle = (params) => {
- return axios({
- url: '/report/returnDocReport/reportTitle',
- data: params,
- method: 'get'
- })
- }
- // 退货交单报表 列表
- export const reportSalesReturnThjdReportList = (params) => {
- const url = `/report/returnDocReport/reportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 退货交单报表 合计
- export const reportSalesReturnThjdReportCount = (params) => {
- return axios({
- url: '/report/returnDocReport/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 退货交单报表 导出
- export const reportSalesReturnThjdReportExport = (params) => {
- return axios({
- url: '/report/returnDocReport/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 全国各省类销售明细报表
- export const realReportSalesByProvince = (params) => {
- return axios({
- url: '/report/realReportSales/subareaArea/reportList',
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 标题
- export const subareaAreaReportTitle = (params) => {
- const url = `/report/realReportSales/subareaArea/reportTitle `
- return axios({
- url: url,
- data: params,
- method: 'get'
- })
- }
- // 导出
- export const realReportSalesByProvinceExport = (params) => {
- return axios({
- url: '/report/realReportSales/subareaArea/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 全国各区类销售明细报表
- export const realReportSalesBySubArea = (params) => {
- return axios({
- url: '/report/realReportSales/subarea/reportList',
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 标题
- export const subareaReportTitle = (params) => {
- const url = `/report/realReportSales/subarea/reportTitle`
- return axios({
- url: url,
- data: params,
- method: 'get',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 导出
- export const realReportSalesBySubAreaExport = (params) => {
- return axios({
- url: '/report/realReportSales/subarea/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 调拨退货单报表
- export const allocateReturnReportQueryPage = (params) => {
- const url = `/report/allocateReturnReport/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 查询调拨退货统计信息
- export const allocateReturnReportQueryCount = (params) => {
- const url = `/report/allocateReturnReport/queryCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 导出
- export const allocateReturnReportExport = (params) => {
- return axios({
- url: '/report/allocateReturnReport/exportExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 分页查询调拨退货明细报表
- export const allocateReturnReportDetailQueryPage = (params) => {
- const url = `/report/allocateReturnReport/detail/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 查询调拨退货明细统计信息
- export const allocateReturnReportDetailQueryCount = (params) => {
- const url = `/report/allocateReturnReport/detail/queryCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 导出
- export const allocateReturnReportDetailExport = (params) => {
- return axios({
- url: '/report/allocateReturnReport/detail/exportExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 费用统计按承担方分页
- export const expenseCollectReportQueryPageByTarget = (params) => {
- const url = `/report/expenseCollectReport/queryPageByTarget/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 费用统计按承担方汇总合计
- export const expenseCollectReportQueryCountByTarget = (params) => {
- const url = `/report/expenseCollectReport/queryCountByTarget`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 导出费用统计按承担方
- export const expenseCollectReportExportByTarget = (params) => {
- return axios({
- url: '/report/expenseCollectReport/exportByTarget',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 费用统计按品类分页
- export const expenseCollectReportQueryPageByProductType = (params) => {
- const url = `/report/expenseCollectReport/queryPageByProductType/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 费用统计按品类汇总合计
- export const expenseCollectReportQueryCountByProductType = (params) => {
- const url = `/report/expenseCollectReport/queryCountByProductType`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 导出费用统计按品类
- export const expenseCollectReportExportByProductType = (params) => {
- return axios({
- url: '/report/expenseCollectReport/exportByProductType',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- /*
- * 采购退货报表列表
- */
- export const sparePartsReturnReportList = (params) => {
- const url = `/report/sparePartsReturn/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 采购退货报表合计
- export const sparePartsReturnReportStat = (params) => {
- const url = `/report/sparePartsReturn/queryPageCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 采购退货报表导出
- export const sparePartsReturnReportExport = (params) => {
- return axios({
- url: '/report/sparePartsReturn/export',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- /*
- * 采购退货明细报表列表
- */
- export const sparePartsReturnDetailReportList = (params) => {
- const url = `/report/sparePartsReturn/detail/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 采购退货明细报表合计
- export const sparePartsReturnDetailReportStat = (params) => {
- const url = `/report/sparePartsReturn/detail/queryPageCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 导出明细
- export const sparePartsReturnReportExportDetail = (params) => {
- return axios({
- url: '/report/sparePartsReturn/detail/export',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 订单差价表
- export const rebateQueryList = (params) => {
- const url = `/report/productRebate/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 合计
- export const rebateQueryCount = (params) => {
- const url = `/report/productRebate/queryCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 订单经销商差价表
- export const productRebateParentList = (params) => {
- const url = `/report/productRebateParent/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 订单经销商差价表 统计
- export const productRebateParentCount = (params) => {
- const url = `/report/productRebateParent/queryCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 产品差价表
- export const rebateDetailQueryList = (params) => {
- const url = `/report/productRebateDetail/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 返利明细报表统计
- export const rebateDetailQueryCount = (params) => {
- const url = `/report/productRebateDetail/queryCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- /*
- ** 开单采退报表
- */
- // 开单采退报表 列表
- export const querySupplierPage = (params) => {
- const url = `/report/sparePartsReturn/querySupplierPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 开单采退报表 合计
- export const querySupplierCount = (params) => {
- const url = `/report/sparePartsReturn/querySupplierCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 开单采退报表 标题
- export const querySupplierTitle = (params) => {
- const url = `/report/sparePartsReturn/querySupplierTitle`
- return axios({
- url: url,
- data: params,
- method: 'get'
- })
- }
- // 开单采退报表 导出
- export const supplierExport = (params) => {
- return axios({
- url: '/report/sparePartsReturn/supplierExport',
- data: params,
- method: 'post',
- responseType: 'blob'
- })
- }
- // 开单采退dan报表 列表
- export const queryBillNoPage = (params) => {
- const url = `/report/sparePartsReturn/queryBillNoPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 开单采退dan报表 合计
- export const queryBillNoCount = (params) => {
- const url = `/report/sparePartsReturn/queryBillNoCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 开单采退dan报表 标题
- export const queryBillNoTitle = (params) => {
- const url = `/report/sparePartsReturn/queryBillNoTitle`
- return axios({
- url: url,
- data: params,
- method: 'get'
- })
- }
- // 开单采退dan报表 导出
- export const billNoExport = (params) => {
- return axios({
- url: '/report/sparePartsReturn/BillNoExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- /*
- ** 收发存报表
- */
- // 收发存报表 明细列表
- export const queryDetailReportPage = (params) => {
- const url = `/report/reportStockPsi/queryDetailReportPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 收发存报表 导出
- export const exportDetailReport = (params) => {
- return axios({
- url: '/report/reportStockPsi/exportReport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 收发存报表 汇总列表
- export const queryGroupByprodTypeReportPage = (params) => {
- const url = `/report/reportStockPsi/queryGroupByProdTypeReport`
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 收发存报表 进销存合计统计
- export const queryReportCount = (params) => {
- const url = `/report/reportStockPsi/queryReportCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // // 收发存报表 汇总导出
- // export const exportGroupByProductTypeReport = (params) => {
- // return axios({
- // url: '/report/reportStockPsi/exportGroupByProductTypeReport',
- // data: params,
- // method: 'post',
- // responseType: 'blob'
- // })
- // }
- /*
- ** 促销销售
- */
- // 促销销售单报表 列表
- export const salesPromoReportList = (params) => {
- const url = `/report/salesPromoReport/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 促销销售单报表 统计
- export const salesPromoReportQueryCount = (params) => {
- const url = `/report/salesPromoReport/queryCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 促销销售单报表 导出
- export const exportSalesPromoReport = (params) => {
- return axios({
- url: '/report/salesPromoReport/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 促销销售单实时报表 列表
- export const salesPromoRealReportList = (params) => {
- const url = `/report/salesPromoRealReport/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 促销销售单实时报表 统计
- export const salesPromoRealReportCount = (params) => {
- const url = `/report/salesPromoRealReport/queryCount`
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 促销销售单实时报表 导出
- export const exportSalesPromoRealReport = (params) => {
- return axios({
- url: '/report/salesPromoRealReport/reportExport',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- /*
- * 产品追溯列表
- */
- // 导出错误项
- export const codeExportImportError = (params) => {
- return axios({
- url: '/report/tracecode/exportImportError',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出错误项')
- }
- })
- }
- // 确定导入轮胎唯一码
- export const traceCodeInsertBatch = (params) => {
- const url = `/report/tracecode/insertBatch`
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('确定导入')
- }
- })
- }
- // 获取 产品追溯列表
- export const traceCodeList = (params) => {
- const url = `/report/tracecode/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 产品追溯列表 统计
- export const traceCodeQueryCount = (params) => {
- const url = '/report/tracecode/queryCount'
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
- // 产品追溯列表 导出
- export const excelOnlineList = (params) => {
- return axios({
- url: '/report/tracecode/excelOnlineList',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 质保信息
- export const getWarrantyInfo = (params) => {
- return axios({
- url: `/report/warranty/queryById/${params.id}`,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('质保信息')
- }
- })
- }
- /*
- * 轮胎统计报表
- */
- // 轮胎统计报表 列表
- export const tireReportList = (params) => {
- const url = `/report/tireRptDealerProductDay/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 轮胎统计报表 统计
- export const queryTireCount = (params) => {
- return axios({
- url: '/report/tireRptDealerProductDay/queryCount',
- data: params,
- method: 'post'
- })
- }
- // 轮胎明细报表 列表
- export const tireReportDetailList = (params) => {
- const url = `/report/tireRptDealerProductDay/queryDetailPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 轮胎明细报表 统计
- export const queryTireDetailCount = (params) => {
- return axios({
- url: '/report/tireRptDealerProductDay/queryDetailCount',
- data: params,
- method: 'post'
- })
- }
- // 轮胎明细报表 出入库明细列表
- export const outDetailList = (params) => {
- const url = `/report/tireRptDealerDayOutStock/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 轮胎报表 导出
- export const tireListExport = (params) => {
- return axios({
- url: '/report/tireRptDealerProductDay/importExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 轮胎明细报表 出入库明细导出
- export const tireOutDetailListExport = (params) => {
- return axios({
- url: '/report/tireRptDealerDayOutStock/importExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- /*
- * 轮胎费用报表
- */
- // 轮胎费用报表 列表
- export const tireFeeReportList = (params) => {
- const url = `/report/tireFee/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 轮胎费用报表 统计
- export const tireFeeReportCount = (params) => {
- return axios({
- url: '/report/tireFee/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 轮胎费用报表 导出
- export const tireFeeListExport = (params) => {
- return axios({
- url: '/report/tireFee/importExcel',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
- // 促销销售单报表(统计)
- export const brandTypeReportList = (params) => {
- const url = `/report/brandTypeReport/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 促销销售单报表(统计) 统计
- export const brandTypeReportCount = (params) => {
- return axios({
- url: '/report/brandTypeReport/reportCount',
- data: params,
- method: 'post'
- })
- }
- // 促销销售单报表(统计) 导出
- export const brandTypeReportExport = (params) => {
- return axios({
- url: '/report/brandTypeReport/excelTireOnlineList',
- data: params,
- method: 'post',
- responseType: 'blob',
- headers: {
- 'module': encodeURIComponent('导出')
- }
- })
- }
|