mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
24 lines
478 B
PHP
24 lines
478 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class console_event_receive_deliveryrefuse extends wms_event_response{
|
||
|
||
/**
|
||
*
|
||
* 拒绝事件处理
|
||
* @param array
|
||
*/
|
||
public function updateStatus($data){
|
||
|
||
if ($data['io_source'] != 'selfwms'){
|
||
return $this->send_succ();
|
||
}else{
|
||
|
||
return $this->send_succ();
|
||
}
|
||
}
|
||
|
||
} |