Files
OMS/app/erpapi/lib/wms/response/process/stockdump.php
2025-12-28 23:13:25 +08:00

38 lines
933 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.
*/
/**
* 转储单
*
* @category
* @package
* @author chenping<chenping@shopex.cn>
* @version $Id: Z
*/
class erpapi_wms_response_process_stockdump
{
/**
* 转储单
*
* @param Array $params=array(
* 'status'=>@状态@ FINISH|FAILED|CANCEL|CLOSE
* 'io_source'=>selfwms
* 'stockdump_bn'=>@转储单号@
* 'memo'=>@备注@
* 'items'=>array(
* 'bn'=>@货号@
* 'num'=>@数量@
* )
*
* )
* @return void
* @author
**/
public function status_update($params)
{
return kernel::single('console_event_receive_stockdump')->ioStorage($params);
}
}