mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-01 05:26:43 +08:00
21 lines
394 B
PHP
21 lines
394 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class purchase_mdl_eo_items extends dbeav_model{
|
||
|
||
|
||
/*
|
||
* 返回可退值
|
||
* @param item_id
|
||
*/
|
||
function Get_num($item_id){
|
||
$item = $this->dump($item_id,'entry_num,out_num');
|
||
return $item['entry_num']-$item['out_num'];
|
||
}
|
||
}
|
||
|
||
?>
|