Authored by LUOXC

ADD

... ... @@ -198,22 +198,36 @@
}
```
## 前台更新换货快递信息
## 前台更新退换货快递信息
### MQ消息数据结构
| 参数 | 值 |
| :-- | :-- |
| exchanges | amq.topic |
| route key | order.updateChangeRefundOrderExpressInfo |
> 换货消息
```json
{ "id":1,
"apply_id":40,
{ "id":1,// 前台换货单唯一主键
"uid":1111,
"apply_id":40,// ERP换货单唯一主键
"express_number":"603596395359",
"express_name":"顺丰",
"express_id":"23",
type:"change" // 表示类型为换货
"type":"change" // 表示类型为换货
}
```
> 退货消息
```json
{ "order_returned_id":1, // 前台退货单唯一主键
"uid":1111,
"apply_id":40, // erp退货单唯一主键
"express_number":"603596395359",
"express_name":"顺丰",
"express_id":"23"
"type":"refund" // 表示类型为退货
}
```
## ERP更新换货单状态
... ... @@ -337,26 +351,6 @@
```
## 前台更新退货快递信息
### MQ消息数据结构
| 参数 | 值 |
| :-- | :-- |
| exchanges | amq.topic |
| route key | order.updateChangeRefundOrderExpressInfo |
```json
{ "order_returned_id":1, //order_returned_id为前台退货id唯一主键
"apply_id":40, //apply_id为erp退货id唯一主键
"express_number":"603596395359",
"express_name":"顺丰",
"express_id":"23"
"type":"refund" // 表示类型为退货
}
```
## ERP更新退货单状态
### MQ消息数据结构
... ...