Files
OMS/app/console/lib/finder/iostock.php
2025-12-28 23:13:25 +08:00

36 lines
1014 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class console_finder_iostock{
var $detail_basic = '详情';
/**
* detail_basic
* @param mixed $bn_branch bn_branch
* @return mixed 返回值
*/
public function detail_basic($bn_branch)
{
// 取货号和库ID
$arr = explode('*$**',$bn_branch);
$bn = $arr[1];
$branch_id = $arr[0];
// 整理查询条件
$time_from = $_GET['time_from'];
$time_to = $_GET['time_to'];
$filter = array('time_from' => $time_from, 'time_to' => $time_to);
// 查询
$mels = app::get('console')->model('interface_iostocksearchs');
$row = $mels->details($bn, $branch_id, $filter);
$render = app::get('console')->render();
$render->pagedata['rows'] = $row;
return $render->display('admin/detail_goods.html');
}
}