fix bug
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2021-12-03 11:10:14
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-02-28 11:31:44
|
||||
* @LastEditTime : 2022-02-28 15:22:19
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\supply-management\\services\\supply-management.service.ts
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
*/
|
||||
@ -54,6 +54,8 @@ export class SupplyManagementService extends BaseService {
|
||||
$api_getCalculatedSurcharge = `/api/sdc/expense/getCalculatedSurcharge`;
|
||||
// 整车计算附加费率
|
||||
$api_getcalculatedServiceRate = `/api/sdc/expense/getAdditionalRate`;
|
||||
// 整车计算附加费率
|
||||
$api_getAdditionalRate = `/api/sdc/expense/getAdditionalRate`;
|
||||
// 代发整车货源
|
||||
$api_consignWhole = `/api/sdc/goodsResourceOperate/consignWhole`;
|
||||
// 代发大宗货源
|
||||
@ -111,8 +113,10 @@ export class SupplyManagementService extends BaseService {
|
||||
public $api_getOperationLogRecordsList = '/api/mdc/pbc/operationLogRecords/getOperationLogRecordsList';
|
||||
// 获取数据字典
|
||||
$api_getDictValue = `/api/mdc/pbc/dictItems/getDictValue`;
|
||||
// 获取协议信息
|
||||
public $api_getAgreementInfoByType = '/api/mdc/pbc/agreementInfo/getAgreementInfoByType';
|
||||
// 获取协议信息
|
||||
public $api_getAgreementInfoByType = '/api/mdc/pbc/agreementInfo/getAgreementInfoByType';
|
||||
// 获取运价
|
||||
public $api_getFreight = '/api/mdc/cuc/freightConfig/getFreight';
|
||||
/**
|
||||
* 获取车型、车长字典数据
|
||||
* @returns
|
||||
@ -132,6 +136,13 @@ export class SupplyManagementService extends BaseService {
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
public limitKeys = {
|
||||
weight: 'sys.config.goods.approvalCarMaxWeight', //整车-核载重量上限
|
||||
volume: 'sys.config.goods.approvalCarMaxVolume', //整车-核载体积上限
|
||||
piece: 'sys.config.goods.approvalCarMaxPiece' //整车-核载件数上限
|
||||
};
|
||||
// 根据ItemKey获取项值
|
||||
public $api_findItemValueByItemKeys = '/api/mdc/pbc/sysConfigItem/findItemValueByItemKeys';
|
||||
// 获取保价费信息
|
||||
public $api_getWholeInsuranceInfo = '/api/sdc/goodsResourceShipper/getWholeInsuranceInfo';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user