mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-24 03:15:32 +08:00
29 lines
590 B
PHP
29 lines
590 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
/**
|
||
*
|
||
*/
|
||
class inventorydepth_mdl_shop_batchframe extends dbeav_model
|
||
{
|
||
|
||
public function table_name($real=false)
|
||
{
|
||
$table_name = 'shop_items';
|
||
if($real){
|
||
return kernel::database()->prefix.$this->app->app_id.'_'.$table_name;
|
||
}else{
|
||
return $table_name;
|
||
}
|
||
}
|
||
|
||
public function modifier_detail_url($row)
|
||
{
|
||
return <<<EOF
|
||
<a target='_blank' href="{$row}">{$row}</a>
|
||
EOF;
|
||
}
|
||
} |