This commit is contained in:
Taric Xin
2022-01-14 14:05:13 +08:00
parent 6a902fad23
commit 07c07e9537
16 changed files with 972 additions and 25 deletions

View File

@ -57,6 +57,14 @@ export class FreightAccountService extends ShipperBaseService {
// 根据费用头ID查询费用单及开票明细
$api_get_cost_detail = '/api/fcc/ficoFeeL/detail';
// 查询应收核销抬头
$api_get_fico_page = '/api/fcc/ficoAhxH/list/page';
// 获取应收核销抬头
$api_get_fico_header = '/api/fcc/ficoAhxH/get';
// 查询应收核销明细
$api_get_fico_detail_header = '/api/fcc/ficoAhxL/list/page';
constructor(public injector: Injector,public eaCacheSrv: EACacheService) {
super(injector, eaCacheSrv);
}