mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-05 22:55:32 +08:00
25 lines
514 B
PHP
25 lines
514 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class pos_finder_orders
|
||
{
|
||
|
||
|
||
var $detail_basic = '基本信息';
|
||
function detail_basic($id){
|
||
|
||
$ordersMdl = app::get('pos')->model('orders');
|
||
$orders = $ordersMdl->db_dump($id,'params');
|
||
$params = json_decode($orders['params'],true);
|
||
if($_GET['display'] == 'true'){
|
||
echo '<pre>';
|
||
print_r($params);
|
||
}
|
||
|
||
|
||
}
|
||
}
|