Files
OMS/app/wms/lib/event/receive/reship.php
2025-12-28 23:13:25 +08:00

31 lines
653 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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();;
}
}