mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
102 lines
3.7 KiB
PHP
102 lines
3.7 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class omevirtualwms_mdl_stockout extends dbeav_model{
|
||
public $queue = [];
|
||
|
||
/**
|
||
* count
|
||
* @param mixed $filter filter
|
||
* @return mixed 返回值
|
||
*/
|
||
public function count($filter=null){
|
||
$branch_ids = $this->app->model('allocate')->getBranchidByselfwms();
|
||
$sqlstr = '';
|
||
if ($branch_ids)
|
||
{
|
||
$sqlstr.=" AND branch_id not in (".implode(',',$branch_ids).")";
|
||
}
|
||
$purchase_sql = "select count(*) as _count from sdb_purchase_returned_purchase where return_status not in('2','3') and check_status='2' and ".$this->_filter($filter).$sqlstr;
|
||
|
||
$allocate_sql = "select count(*) as _count from sdb_taoguaniostockorder_iso where iso_status not in('3','4') and check_status='2' and type_id in('40','5','7','100','300') and ".$this->_filter($filter).' ';
|
||
$sql = sprintf('select sum(c._count) as _count from (%s UNION ALL %s) as c',$purchase_sql,$allocate_sql);
|
||
|
||
$row = $this->db->selectrow($sql);
|
||
return intval($row['_count']);
|
||
}
|
||
|
||
public function getlist($cols='*', $filter=array(), $offset=0, $limit=-1, $orderType=null){
|
||
$branch_ids = $this->app->model('allocate')->getBranchidByselfwms();
|
||
$sqlstr = '';
|
||
if ($branch_ids)
|
||
{
|
||
$sqlstr.=" AND branch_id not in (".implode(',',$branch_ids).")";
|
||
}
|
||
$purchase_sql = "select rp_bn AS bn,operator,returned_time AS create_time,'purchase_return' AS i_type from sdb_purchase_returned_purchase where return_status not in('2','3') and check_status='2' and ".$this->_filter($filter).$sqlstr;
|
||
|
||
$allocate_sql = "select iso_bn AS bn,operator,create_time,'stockout' AS i_type from sdb_taoguaniostockorder_iso where iso_status not in('3','4') and check_status='2' and type_id in('40','5','7','100','300') and ".$this->_filter($filter).$sqlstr;
|
||
|
||
$sql = sprintf('%s UNION ALL %s order by create_time desc',$purchase_sql,$allocate_sql);
|
||
|
||
$rows = $this->db->selectLimit($sql,$limit,$offset);
|
||
|
||
|
||
return $rows;
|
||
}
|
||
|
||
/**
|
||
* 获取_schema
|
||
* @return mixed 返回结果
|
||
*/
|
||
public function get_schema(){
|
||
$schema = array (
|
||
'columns' => array (
|
||
'bn' => array (
|
||
'type' => 'varchar(32)',
|
||
'required' => true,
|
||
'label' => '出库单号',
|
||
'editable' => false,
|
||
'width' =>180,
|
||
),
|
||
'operator' => array (
|
||
'type' => 'varchar(100)',
|
||
'label' => '操作人',
|
||
'editable' => false,
|
||
'width' =>100,
|
||
),
|
||
'create_time' => array (
|
||
'type' => 'time',
|
||
'label' => '创建日期',
|
||
'width' =>160,
|
||
'editable' => false,
|
||
),
|
||
'i_type' => array (
|
||
'type' => 'varchar(20)',
|
||
'label' => '类型',
|
||
'editable' => false,
|
||
'width' =>120,
|
||
),
|
||
|
||
),
|
||
'idColumn' => 'bn',
|
||
'in_list' => array (
|
||
0 => 'bn',
|
||
1 => 'operator',
|
||
2 => 'create_time',
|
||
3 => 'i_type',
|
||
),
|
||
'default_in_list' => array (
|
||
0 => 'bn',
|
||
1 => 'operator',
|
||
2 => 'create_time',
|
||
3 => 'i_type',
|
||
),
|
||
);
|
||
return $schema;
|
||
}
|
||
|
||
}
|