POST api/TMSApp/FreightPlan/SaveFreightPlan?planID={planID}&orderID={orderID}&planDate={planDate}&TPValue={TPValue}&corpID={corpID}&ArriveTime={ArriveTime}&Remark={Remark}

日计划分拆

Request Information

URI Parameters

NameDescriptionTypeAdditional information
planID

分拆的总计划ID

integer

Required

orderID

对应订单ID

integer

Required

planDate

分拆日期

date

Required

TPValue

分拆量

decimal number

Required

corpID

用户所属公司ID

integer

Required

ArriveTime

到货截至日期

date

Required

Remark

备注

string

Required

Body Parameters

调运计划收发货区域

Collection of FreightPlanArea
NameDescriptionTypeAdditional information
OrderAreaID

订单区域外键

integer

None.

PlanAreaType

收发货区域类型:1:收货区域;2:发货区域

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "OrderAreaID": 1,
    "PlanAreaType": 2
  },
  {
    "OrderAreaID": 1,
    "PlanAreaType": 2
  }
]

Response Information

Resource Description

日计划分拆

MsgBaseApiPageOfString
NameDescriptionTypeAdditional information
Status

返回状态0:失败,1:成功

integer

None.

Msg

返回消息

string

None.

Data

返回数据内容,默认为空

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "Msg": "sample string 2",
  "Data": "sample string 3"
}