mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-27 11:15:43 +08:00
21 lines
482 B
PHP
21 lines
482 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class pos_finder_aftersale
|
||
{
|
||
|
||
var $detail_basic = '基本信息';
|
||
function detail_basic($id){
|
||
|
||
$aftersaleMdl = app::get('pos')->model('aftersale');
|
||
$aftersales = $aftersaleMdl->db_dump($id,'params');
|
||
$params = json_decode($aftersales['params'],true);
|
||
echo '<pre>';
|
||
print_r($params);
|
||
|
||
}
|
||
}
|