|
|
@@ -1,7 +1,7 @@
|
|
|
import {
|
|
|
DeliveryOrderReq,
|
|
|
HdWRDealOrderReq,
|
|
|
- HdWROrderReq, PaymentArrearsReq, WarehouseRepurchaseReq,
|
|
|
+ HdWROrderReq, PaymentArrearsReq, WarehouseRepurchaseReq, WrBargainNoAgreeReq,
|
|
|
WRListingCancelOrderReq, WROutApplyCancelReq,
|
|
|
WROutApplyReq, WROutCancelReq, WROutConfirmReq, WRTradeFinanceBuyCancelReq
|
|
|
} from "@/services/proto/warehousetrade/interface";
|
|
|
@@ -106,4 +106,13 @@ export const WROutCancel = (param: WROutCancelReq): Promise<any> => {
|
|
|
*/
|
|
|
export const DeliveryOrder = (param: DeliveryOrderReq): Promise<any> =>{
|
|
|
return protoMiddleware<DeliveryOrderReq>(param, 'DeliveryOrderReq', 'DeliveryOrderRsp', HeadEnum.tradeMode17)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 议价申请拒绝请求
|
|
|
+ * @param param
|
|
|
+ * @constructor
|
|
|
+ */
|
|
|
+export const WrBargainNoAgree = (param: WrBargainNoAgreeReq): Promise<any> =>{
|
|
|
+ return protoMiddleware<WrBargainNoAgreeReq>(param, 'WrBargainNoAgreeReq', 'WrBargainNoAgreeRsp', HeadEnum.tradeMode17)
|
|
|
}
|