mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-10 00:15:32 +08:00
28 lines
535 B
PHP
28 lines
535 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class wms_event_receive_otheroutstorage extends wms_event_response{
|
||
|
||
/**
|
||
* 其他出库操作后其他出库单状态变更
|
||
*/
|
||
public function setStatus(){
|
||
|
||
}
|
||
|
||
public function create($data){
|
||
#error_log(var_export($data,1),3,__FILE__.'.log');
|
||
return $this->send_succ();
|
||
}
|
||
|
||
public function updateStatus($data){
|
||
return $this->send_succ();
|
||
}
|
||
}
|
||
|
||
?>
|