| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- <?php
- namespace App\Http\Controllers;
- use App\Exports\Export;
- use App\Inventory;
- use App\InventoryMission;
- use App\OracleBasCustomer;
- use App\Owner;
- use App\Services\InventoryService;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Gate;
- use Maatwebsite\Excel\Facades\Excel;
- class InventoryController extends Controller
- {
- public function __construct()
- {
- app()->singleton('inventoryService',InventoryService::class);
- }
- public function conditionQuery(Request $request,$page=null,$paginate=null){
- if(!Gate::allows("库存管理-库存")){ return redirect(url('/')); }
- $date_start=$request->input('date_start');
- $range = $request->input('range');
- if ($range)$date_start=date('Y-m-d',strtotime('-'.$range." day"));
- $date_end=$request->input('date_end');
- $TOLocation=$request->input('TOLocation');
- $LotAtt05=$request->input('LotAtt05');
- $LotAtt02_start=$request->input('LotAtt02_start');
- $descr_c=$request->input('descr_c');
- $SKU=$request->input('SKU');
- $ALTERNATE_SKU1=$request->input('ALTERNATE_SKU1');
- $LotAtt02_end=$request->input('LotAtt02_end');
- $sql='select * from (select result.*,rownum rn from (';
- $sql.=' select customer.Descr_C as 货主,stockLog.客户 客户, 库位, sku.SKU 产品编码, sku.ALTERNATE_SKU1 产品条码, ';
- $sql.=' sku.Descr_C 商品名称, lot.LotAtt05 属性仓, lot.LotAtt08 质量状态, lot.LotAtt02 失效日期, ';
- $sql.=' lot.LotAtt04 批号 ';
- $sql.=' , sum(移出数量)移出数量, sum(移入数量)移入数量 ';
- $sql.=' , storeStatus.QTY 在库数量, storeStatus.QtyAllocated 占用数量,count(1) over () as sum from ';
- $sql.=' (select FMLotNum,FMSKU,TOCustomerID 客户,0 as 移出数量, sum(TOQty_Each) as 移入数量, TOLocation as 库位 ';
- $sql.=" from ACT_Transaction_Log where TransactionType='PA' ";
- if ($date_start) $sql.=" and addtime > to_date('".$date_start." 00:00:00','yyyy-mm-dd hh24:mi:ss') ";
- if ($date_end) $sql.=" and addtime < to_date('".$date_end." 23:59:59','yyyy-mm-dd hh24:mi:ss') ";
- if ($TOLocation)$sql .= " and TOLocation like '".$TOLocation."' ";
- if ($SKU)$sql.=" and FMSKU like '".$SKU."' ";
- $sql.=' group by TOCustomerID, TOLocation,FMSKU,FMLotNum union all ';
- $sql.=' select FMLotNum,FMSKU,FMCUSTOMERID 客户,sum(FMQty_Each) as 移出数量, 0 as 移入数量, FMLOCATION as 库位 ';
- $sql.=" from ACT_Transaction_Log where TransactionType='SO' ";
- if ($date_start) $sql.=" and addtime > to_date('".$date_start." 00:00:00','yyyy-mm-dd hh24:mi:ss') ";
- if ($date_end) $sql.=" and addtime < to_date('".$date_end." 23:59:59','yyyy-mm-dd hh24:mi:ss') ";
- if ($TOLocation)$sql .= " and FMLOCATION like '".$TOLocation."' ";
- if ($SKU)$sql.=" and FMSKU like '".$SKU."' ";
- $sql.=' group by FMCustomerID, FMLocation,FMSKU,FMLotNum union all ';
- $sql.=' select FMLotNum,FMSKU,FMCUSTOMERID 客户,sum(FMQty_Each) as 移出数量,0 as 移入数量, FMLocation as 库位 ';
- $sql.=" from ACT_Transaction_Log where TransactionType='MV' ";
- if ($date_start) $sql.=" and addtime > to_date('".$date_start." 00:00:00','yyyy-mm-dd hh24:mi:ss') ";
- if ($date_end) $sql.=" and addtime < to_date('".$date_end." 23:59:59','yyyy-mm-dd hh24:mi:ss') ";
- if ($TOLocation)$sql .= " and FMLocation like '".$TOLocation."' ";
- if ($SKU)$sql.=" and FMSKU like '".$SKU."' ";
- $sql.=' group by FMLocation,FMCUSTOMERID,FMSKU,FMLotNum union all ';
- $sql.=' select FMLotNum,FMSKU,TOCustomerID 客户,0 as 移出数量,sum(TOQty_Each)as 移入数量, TOLocation as 库位 ';
- $sql.=" from ACT_Transaction_Log where TransactionType='MV' ";
- if ($date_start) $sql.=" and addtime > to_date('".$date_start." 00:00:00','yyyy-mm-dd hh24:mi:ss') ";
- if ($date_end) $sql.=" and addtime < to_date('".$date_end." 23:59:59','yyyy-mm-dd hh24:mi:ss') ";
- if ($TOLocation)$sql .= " and TOLocation like '".$TOLocation."' ";
- if ($SKU)$sql.=" and FMSKU like '".$SKU."' ";
- $sql.=' group by TOLocation,TOCustomerID,FMSKU,FMLotNum)stockLog ';
- $sql.=' left join BAS_Customer customer on customer.CustomerID=stockLog.客户 ';
- $sql.=' left join BAS_SKU sku on sku.SKU=stockLog.FMSKU and sku.CUSTOMERID=stockLog.客户 ';
- $sql.=' left join INV_LOT_ATT lot on lot.LOTNUM=stockLog.FMLOTNUM ';
- $sql.=' left join INV_LOT_LOC_ID storeStatus on storeStatus.LOTNUM=stockLog.FMLOTNUM ';;
- $sql.=' and storeStatus.LocationID=stockLog.库位 ';
- $sql.=' group by 库位,customer.Descr_C,sku.SKU,sku.ALTERNATE_SKU1 ';
- $sql.=' ,sku.Descr_C,FMLotNum,lot.LotAtt05,lot.LotAtt08,lot.LotAtt02,lot.LotAtt04 ';
- $sql.=' , storeStatus.QTY, storeStatus.QtyAllocated,stockLog.客户 ';
- $sql.=' )result where 1=1 ';
- if ($LotAtt05)$sql .=" and 属性仓 like '".$LotAtt05."' ";
- if ($LotAtt02_start)$sql.=" and 失效日期 >='".$LotAtt02_start." 00:00:00' ";
- if ($LotAtt02_end)$sql.=" and 失效日期 <='".$LotAtt02_end." 23:59:59' ";
- if ($descr_c){
- $sql .= ' and 货主 in (';
- $descr_cs = explode(',',$descr_c);
- foreach ($descr_cs as $index => $descr_c){
- if ($index != 0)$sql .= ',';
- $sql .= "'".$descr_c."'";
- }
- $sql .= ') ';
- }
- if ($ALTERNATE_SKU1)$sql.=" and 产品条码 like '".$ALTERNATE_SKU1."' ";
- if ($page&&$paginate)$sql.=" and ROWNUM<='".$page*$paginate."'";
- $sql.=' ) ';
- if ($page&&$paginate)$sql.=" where rn>'".($page-1)*$paginate."'";
- return DB::connection('oracle')->select($sql);
- }
- //动库报表
- public function changeInventory(Request $request){
- $page=$request->input('page')??1;
- $paginate=$request->input('paginate')??50;
- $oracleActTransactingLogs=$this->conditionQuery($request,$page,$paginate);
- $oracleActTransactingLogs=json_encode($oracleActTransactingLogs);
- $owners=OracleBasCustomer::select('descr_c')->where('customer_type','OW')->where('active_flag','Y')->get();
- return view('inventory.statement.changeInventory',compact('oracleActTransactingLogs','page','owners'));
- }
- //全部库存
- public function allInventory(Request $request){
- if(!Gate::allows("库存管理-库存")){ return redirect(url('/')); }
- $page=$request->page??1;
- $paginate=$request->input('paginate')??50;
- $oracleActTransactingLogs=$this->conditionQuery($request,$page,$paginate);
- $oracleActTransactingLogs=json_encode($oracleActTransactingLogs);
- $owners=OracleBasCustomer::select('descr_c')->where('customer_type','OW')->where('active_flag','Y')->get();
- return view('inventory.statement.allInventory',compact('oracleActTransactingLogs','page','owners'));
- }
- public function exportData(Request $request){
- if (!$request->checkAllSign){
- $oracleActTransactingLogs=json_decode($request->input('data'),true);
- return $this->export($oracleActTransactingLogs);
- }
- $oracleActTransactingLogs=$this->conditionQuery($request);
- $oracleActTransactingLogs=json_encode($oracleActTransactingLogs);
- $oracleActTransactingLogs=json_decode($oracleActTransactingLogs,true);
- return $this->export($oracleActTransactingLogs);
- }
- public function export($oracleActTransactingLogs){
- $row=[[
- 'customer_descr_c'=>'货主',
- 'TOLocation'=>'库位',
- 'LotAtt05'=>'属性仓',
- 'LotAtt02'=>'失效日期',
- 'SKU'=>'产品编码',
- 'ALTERNATE_SKU1'=>'产品条码',
- 'sku_Descr_C'=>'商品名称',
- 'LotAtt08'=>'质量状态',
- 'LotAtt04'=>'批号',
- 'come_sum'=>'移出数量',
- 'join_sum'=>'移入数量',
- 'QTY'=>'在库数量',
- 'QtyAllocated'=>'占用数量',
- ]];
- $list=[];
- for ($i=0; $i<count($oracleActTransactingLogs);$i++){
- $w=[
- 'customer_descr_c'=>$oracleActTransactingLogs[$i]['货主'],
- 'TOLocation'=>$oracleActTransactingLogs[$i]['库位'],
- 'LotAtt05'=>$oracleActTransactingLogs[$i]['属性仓'],
- 'LotAtt02'=>$oracleActTransactingLogs[$i]['失效日期'],
- 'SKU'=>$oracleActTransactingLogs[$i]['产品编码'],
- 'ALTERNATE_SKU1'=>$oracleActTransactingLogs[$i]['产品条码'],
- 'sku_Descr_C'=>$oracleActTransactingLogs[$i]['商品名称'],
- 'LotAtt08'=>$oracleActTransactingLogs[$i]['质量状态'],
- 'LotAtt04'=>$oracleActTransactingLogs[$i]['批号'],
- 'come_sum'=>$oracleActTransactingLogs[$i]['移出数量'],
- 'join_sum'=>$oracleActTransactingLogs[$i]['移入数量'],
- 'QTY'=>$oracleActTransactingLogs[$i]['在库数量'],
- 'QtyAllocated'=>$oracleActTransactingLogs[$i]['占用数量'],
- ];
- $list[$i]=$w;
- }
- return Excel::download(new Export($row,$list),date('YmdHis', time()).'-动库报表单.xlsx');
- }
- //创建盘点任务
- public function createStockInventoryMission(Request $request){
- if(!Gate::allows("库存管理-盘点")){ return redirect(url('/')); }
- $date_start=$request->input('formData.date_start');
- $date_end=$request->input('formData.date_end');
- $ownerId=$request->input('formData.owner_id')[0];
- $inventory=app('inventoryService')->createMission($date_start,$date_end,$ownerId);
- $inventory=Inventory::with('owner')->find($inventory->id);
- if (is_null($inventory)) return ['success'=>false,'data'=>'参数错误!'];
- return ['success'=>true,'data'=>$inventory];
- }
- //删除盘点任务
- public function deleteStockInventoryMission($id){
- if(!Gate::allows('库存管理-盘点')){return['success'=>0,'status'=>'没有权限'];}
- if(is_null($id)){return ['success'=>false,'data'=>'传入id为空'];}
- $inventory=Inventory::where('id',$id)->delete();
- return ['success'=>true,'data'=>$inventory];
- }
- //盘点-任务页面
- public function mission(Request $request){
- if(!Gate::allows("库存管理-盘点")){ return redirect(url('/')); }
- $paginateParams = $request->input();
- $queryParam=$request->all();
- $inventories=app('inventoryService')->paginate($queryParam);
- $owners=Owner::select('id','name')->get();
- return view('inventory.stockInventory.mission',compact('owners','inventories','paginateParams'));
- }
- //进入盘点中或复盘页面
- public function enterStockInventory($id){
- if (!Gate::allows('库存管理-盘点')){return redirect(url('/')); }
- if (!$id) return ['success'=>false,'data'=>'参数错误!'];
- $inventory=Inventory::with('owner')->find($id);
- $inventoryMissions=InventoryMission::with(['commodity'])->where('inventory_id',$id)->orderBy('difference_amount','desc')->get();
- return view('inventory.stockInventory.inventoryMission',compact('inventory','inventoryMissions'));
- }
- //依据盘点任务id进行 --盘点
- public function stockInventory(Request $request){
- if (!Gate::allows('库存管理-盘点')){return redirect(url('/')); }
- $location=$request->input('location');
- $barcode=$request->input('barcode');
- $inventoryId=$request->input('inventoryId');
- $count=$request->input('count');
- if (is_null($count)) return ['success'=>false,'data'=>'盘点数不能为空!'];
- $inventoryMission=app('inventoryService')->stockInventory($location,$barcode,$count,$inventoryId);
- if (!$inventoryMission)return ['success'=>false,'data'=>'参数错误!'];
- $inventory=app('inventoryService')->updateInventory($inventoryId);
- return ['success'=>true,'inventoryMission'=>$inventoryMission,'inventory'=>$inventory];
- }
- //根据该库存和产品条码查询该条盘点记录
- public function searchStockInventoryRecord(Request $request){
- if (!Gate::allows('库存管理-盘点')){return redirect(url('/')); }
- $location=$request->input('location');
- $barcode=$request->input('barcode');
- $inventoryId=$request->input('inventoryId');
- $inventoryMission=app('inventoryService')->searchStockInventoryRecord($location,$barcode,$inventoryId);
- if (!$inventoryMission)return ['success'=>false,'data'=>'参数错误!'];
- return ['success'=>true,'data'=>$inventoryMission];
- }
- //盘点任务导出
- public function stockInventoryExport(Request $request){
- if (!Gate::allows('库存管理-盘点')){return redirect(url('/')); }
- ini_set('max_execution_time',3500);
- ini_set('memory_limit','3526M');
- if ($request->checkAllSign){
- $request->offsetUnset('checkAllSign');
- $queryParam=$request->all();
- $inventories=app('inventoryService')->get($queryParam);
- }else{
- $queryParam=$request->all();
- $inventories=app('inventoryService')->some($queryParam);
- }
- $row=[[
- 'id'=>'盘点编号',
- 'created_at'=>'创建时间',
- 'owner_id'=>'货主',
- 'type'=>'任务类型',
- 'start_at'=>'起始时间',
- 'end_at'=>'结束时间',
- 'total'=>'记录数',
- 'processed'=>'已盘数',
- 'surplus'=>'剩余数',
- 'difference'=>'复盘差异',
- 'returned'=>'复盘归位',
- ]];
- $list=[];
- for ($i=0; $i<count($inventories);$i++){
- $inventory=$inventories[$i];
- $w=[
- 'id'=>isset($inventory->id)?$inventory->id:'',
- 'created_at'=>isset($inventory->created_at)?$inventory->created_at:'',
- 'owner_id'=>isset($inventory->owner->name)?$inventory->owner->name:'',
- 'type'=>isset($inventory->type)?$inventory->type:'',
- 'start_at'=>isset($inventory->start_at)?$inventory->start_at:'',
- 'end_at'=>isset($inventory->end_at)?$inventory->end_at:'',
- 'total'=>isset($inventory->total)?$inventory->total:'',
- 'processed'=>isset($inventory->processed)?$inventory->processed:'',
- 'surplus'=>isset($inventory->surplus)?$inventory->surplus:'',
- 'difference'=>isset($inventory->difference)?$inventory->difference:'',
- 'returned'=>isset($inventory->returned)?$inventory->returned:'',
- ];
- $list[$i]=$w;
- }
- return Excel::download(new Export($row,$list),date('YmdHis', time()).'-盘点任务记录单.xlsx');
- }
- }
|