修改
# 修改
- **请求URL**
> [{{URL}}/shipment](#)
- **请求方式**
>**put**
- **请求参数**
```java
{
"id":1, --id
"bill_num":"XSCH2112080002",--订单号
"date":"2021-12-09", --时间
"statement_customer_id":"0", --结算单位id 没有就0
"statement_customer_name":"好朋友结算单位", --结算单位名称
"remark":"备注哦哦哦",--备注
"delivery_person":"小黄", --提货人
"delivery_truck_number":"苏E28193", --提货车号
"is_print":"0", --是否打印
"details":[ --明细(产品信息)
{
"id":1, --id
"categorys_small_id":0,--品名ID 没有就0
"categorys_small_name":"不知道",--品名
"materials_id":0,--材质ID 没有就0
"materials_name":"不知道",--材质
"specs_id":0, --规格ID 没有就0
"specs_name":"不知道", --规格
"steel_mill_id":0,--钢厂ID 没有就0
"steel_mill_name":"不知道哦",--钢厂名称
"tax_price":"100", --单价
"tax_money":"1000", --含税金额(根基计算单位走 :计算单位 * 单价)
"unit_of_measurement":1 --计算单位 (1 重量 2数量)
"num":"0", --数量
"weight":"10000",--重量
"remark":"不知道" --备注
},
{
--没有id就新增
"categorys_small_id":0,
"categorys_small_name":"不知道1",
"materials_id":0,
"materials_name":"不知道1",
"specs_id":0,
"specs_name":"不知道1",
"tax_price":"100",
"tax_money":"1000",
"price":"0",
"money":"0",
"num":"0",
"weight":"10000",
"remark":"不知道1"
}
]
}
```
- **错误码**
```java
500 失败
```
- **返回示例**
>
```java
{
"code": 200,
"message": "操作成功",
"data": []
}
```