mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-13 17:25:39 +08:00
21 lines
478 B
PHP
21 lines
478 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class console_event_receive_stockaccount extends console_event_response{
|
||
|
||
function create($data){
|
||
$result = kernel::single('console_receipt_stockaccount')->checking($data);
|
||
if ($result){
|
||
return $this->send_succ();
|
||
}else{
|
||
return $this->send_error('更新失败');
|
||
}
|
||
|
||
}
|
||
|
||
}
|
||
|
||
?>
|