mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-06 06:55:36 +08:00
31 lines
653 B
PHP
31 lines
653 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class wms_event_receive_reship extends wms_event_response{
|
||
|
||
/**
|
||
* 退货单创建事件
|
||
* @param array $data
|
||
*/
|
||
public function create($data){
|
||
|
||
#error_log('reship:'.var_export($data,1),3,__FILE__.".log");
|
||
return $this->send_succ();
|
||
}
|
||
|
||
/**
|
||
* 退货单通知单状态变更事件
|
||
* @param array $data
|
||
*/
|
||
public function updateStatus($data){
|
||
|
||
|
||
//error_log('cancel\n',3,__FILE__.".log");
|
||
return $this->send_succ();;
|
||
}
|
||
|
||
}
|