Authored by jiran.zhao

'一件代发,运费账务明细'

... ... @@ -13,6 +13,7 @@ const apiUrl = {
shopWithdrawApply: '/erp2/shopWithdrawApply',
shopWithdrawAccountList: '/erp2/shopWithdrawAccountList',
shopWithdrawServiceList: '/erp2/shopWithdrawServiceList',
shopWithdrawFreightList: '/erp2/shopWithdrawFreightList',
};
class FinanceService extends Service {
... ... @@ -72,7 +73,7 @@ class FinanceService extends Service {
}
/**
* 提现申请管理-资金操作明细列表
* 资金操作明细列表
* @param params
* @returns {Promise<unknown>}
*/
... ... @@ -81,7 +82,7 @@ class FinanceService extends Service {
}
/**
* 提现申请管理-资金操作明细-提现明细ß
* 资金操作明细-提现明细
* @param params
* @returns {Promise<unknown>}
*/
... ... @@ -99,7 +100,7 @@ class FinanceService extends Service {
}
/**
* 账户资金-账务明细
* 交易账务明细
* @param params
* @returns {Promise<unknown>}
*/
... ... @@ -108,13 +109,22 @@ class FinanceService extends Service {
}
/**
* 账单管理-服务费账单
* 服务费账单
* @param params
* @returns {Promise<unknown>}
*/
shopWithdrawServiceList(params) {
return this.post(apiUrl.shopWithdrawServiceList, params);
}
/**
* 运费账务明细
* @param params
* @returns {Promise<unknown>}
*/
shopWithdrawFreightList(params) {
return this.post(apiUrl.shopWithdrawFreightList, params);
}
}
FinanceService.exportBalanceList = '/Api/erp/exportBalanceList'; // 导出对账单列表, 结算单列表
... ...
... ... @@ -6,9 +6,10 @@ const domainApis = {
// 提现申请管理
shopWithdrawList: '/erp-gateway-web/shop/withdraw/list', //资金操作明细列表
shopWithdrawApplyById: '/erp-gateway-web/shop/withdraw/applyById', //资金操作明细-提现明细
shopWithdrawApply: '/erp-gateway-web/shop/withdraw/apply', //资金操作明细-提现明细
shopWithdrawAccountList: '/erp-gateway-web/shop/account/list', //账户资金-账务明细
shopWithdrawApply: '/erp-gateway-web/shop/withdraw/apply', //资金操作明细-申请提现
shopWithdrawAccountList: '/erp-gateway-web/shop/account/list', //交易账务明细
shopWithdrawServiceList: '/erp-gateway-web/shop/withdraw/service/list', //服务费账单
shopWithdrawFreightList: '/erp-gateway-web/shop/withdraw/freight/list', //运费账务明细
},
erp: {
login: '/erp-gateway-web/account/profile/login',
... ... @@ -104,8 +105,9 @@ const domainApis = {
shopWithdrawList: '/erp-gateway-web/shop/withdraw/list', //资金操作明细列表
shopWithdrawApplyById: '/erp-gateway-web/shop/withdraw/applyById', //资金操作明细-提现明细
shopWithdrawApply: '/erp-gateway-web/shop/withdraw/apply', //资金操作明细-提现明细
shopWithdrawAccountList: '/erp-gateway-web/shop/account/list', //账户资金-账务明细
shopWithdrawAccountList: '/erp-gateway-web/shop/account/list', //交易账务明细
shopWithdrawServiceList: '/erp-gateway-web/shop/withdraw/service/list', //服务费账单
shopWithdrawFreightList: '/erp-gateway-web/shop/withdraw/freight/list', //运费账务明细
},
platform: {
queryShopsByAdminPid: '/SellerShopController/queryShopsByAdminPid',
... ...