|
@@ -84,7 +84,7 @@ export function getNoticeNum(params) {
|
|
|
// 经销商仓库库存列表(前置)
|
|
|
export function getcustomerFrontList(params) {
|
|
|
return request({
|
|
|
- url: '/customer/front/list',
|
|
|
+ url: `/customer/front/list?moduleId=${params.moduleId}`,
|
|
|
method: 'post',
|
|
|
data: params
|
|
|
})
|
|
@@ -102,7 +102,7 @@ export function partsNewInExport(data, name) {
|
|
|
// 经销商仓库库存列表(商家)
|
|
|
export function getFrontListCustomer(params) {
|
|
|
return request({
|
|
|
- url: '/customer/front/listCustomer',
|
|
|
+ url: `/customer/front/listCustomer?moduleId=${params.moduleId}`,
|
|
|
method: 'post',
|
|
|
data: params
|
|
|
})
|
|
@@ -121,7 +121,7 @@ export function exportCustomer(data, name) {
|
|
|
// 库存调整管理
|
|
|
export function getFrontListCustomerAcc(params) {
|
|
|
return request({
|
|
|
- url: '/customer/front/listCustomerAcc',
|
|
|
+ url: `/customer/front/listCustomerAcc?moduleId=${params.moduleId}`,
|
|
|
method: 'post',
|
|
|
data: params
|
|
|
})
|
|
@@ -139,7 +139,7 @@ export function exportCustomerStockOrderBean(data, name) {
|
|
|
// 库存调整管理三级帐
|
|
|
export function getFrontListStockAcc(params) {
|
|
|
return request({
|
|
|
- url: '/customer/front/listStockAcc',
|
|
|
+ url: `/customer/front/listStockAcc?moduleId=${params.moduleId}`,
|
|
|
method: 'post',
|
|
|
data: params
|
|
|
})
|