mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
13 lines
371 B
PHP
13 lines
371 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class omeauto_mdl_autoconfirm extends dbeav_model{
|
||
function suf_delete($oid){
|
||
$orderTypeObj = app::get('omeauto')->model('order_type');
|
||
$orderTypeObj->update(array('oid'=>0),array('oid'=>$oid));
|
||
return true;
|
||
}
|
||
} |