mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-07 07:15:33 +08:00
42 lines
775 B
PHP
42 lines
775 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class wms_event_receive_allocate extends wms_event_response{
|
||
|
||
/**
|
||
* 调拨操作后变更调拨单的状态
|
||
*/
|
||
public function setStatus(){
|
||
return $this->send_succ();
|
||
}
|
||
|
||
/**
|
||
* 调拔出库通知单创建事件
|
||
* @param array $data
|
||
*/
|
||
public function increate($data){
|
||
|
||
|
||
return $this->send_succ();
|
||
}
|
||
/**
|
||
* 调拔入库通知单创建事件
|
||
* @param array $data
|
||
*/
|
||
public function outcreate($data){
|
||
|
||
|
||
return $this->send_succ();
|
||
}
|
||
|
||
public function updateStatus($data){
|
||
return $this->send_succ();
|
||
}
|
||
}
|
||
|
||
?>
|