| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace addons\WechatVideoShop\common\logic\traits;
- use addons\WechatVideoShop\common\service\RefundCallbackService;
- trait WeChatCallbackRefundTrait
- {
- /**
- * {
- * "ToUserName": "gh_*",
- * "FromUserName": "OpenID",
- * "CreateTime": 1662480000,
- * "MsgType": "event",
- * "Event": "channels_ec_aftersale_update",
- * "finder_shop_aftersale_status_update": {
- * "status": "USER_WAIT_RETURN",
- * "after_sale_order_id": "1234567",
- * "order_id":"12345"
- * }
- * }
- * 售后单更新
- * @return void
- * @throws \Exception
- */
- public function channels_ec_aftersale_update(array $params)
- {
- $this->init($params);
- (new RefundCallbackService($this->shop_id, $this->mall_id))->update($this->data);
- }
- }
|