|
@@ -35,12 +35,12 @@ class DepotGoods extends Controller
|
|
|
*/
|
|
|
public function index()
|
|
|
{
|
|
|
- $lid = input('id');
|
|
|
+ $lid = input('id',0);
|
|
|
$search_name = input('search_name','');
|
|
|
- $this->title = '商品盘点' ;Db::name('Depot')->where('id',$lid)->value('name');
|
|
|
+ $this->title = '商品盘点' ;
|
|
|
$this->lid = $lid;
|
|
|
$where = [];
|
|
|
- $where[]= ['v.depot_id','=',$lid];
|
|
|
+ if($lid)$where[]= ['v.depot_id','=',$lid];
|
|
|
if($search_name) $where[] = ['g.name','like',"%".$search_name."%"];
|
|
|
$list = $this->_query($this->table)->alias('v')
|
|
|
->field('v.create_at,v.sort,v.id,v.online_id,v.goods_id,v.depot_id,g.name as goods_name,g.cover,g.name,g.low_price,g.status,g.is_deleted')
|