UNPKG

sf-apple-sdk

Version:

Apple SF SDK for SF WMS

17 lines (16 loc) 782 B
import { Options } from '../types/base.js'; import { ReturnInboundWaybillUpdateData, ReturnInboundWaybillUpdateResponse } from '../types/return-inbound-waybill-update.js'; /** * 退货入库单运单号更新接口 Service 3.14 ✅ * 接口用于支持客户重推相同的 erp 单号更新退货运单号字段。 */ export declare class UpdatePurchaseOrderService { private options; constructor(options: Options); /** * 更新退货入库单的运单号 * @param req ReturnInboundWaybillUpdateRequest * @throws 如果 CompanyCode 为空,或 UpdatePurchaseOrders 列表为空,或列表中任一项缺少必填字段,则抛出 Error */ updateWaybills(data: ReturnInboundWaybillUpdateData): Promise<ReturnInboundWaybillUpdateResponse>; }