@extends('print.template.checklist') @section('title', '売上チェックリスト') @section('header')
【倉庫】{{$warehouse?->code . ' ' .$warehouse?->name}}
≪現在庫表≫
作成 {{ $created_at }} {PAGENO}頁
@endsection @section('table-header')
ロケーション
品番
商品名
荷姿
倉区
現在庫
照合
繰越在庫
前回入荷
入 荷
前回出荷
出 荷
@endsection @section('table-details') @foreach($entities as $entity)
{{$entity->location?->joinedLocation}}
{{$entity->item->code}}
{{$entity->item->packaging}}
{{$entity->returned_purchase_quantity ?? 0}}
{{$entity->returned_earning_quantity ?? 0}}
{{$entity->item->name}}
{{$entity->stock_allocation->name}}
{{$entity->current_quantity}}
{{$entity->day_before_quantity ?? 0}}
{{$entity->last_closing_purchase_amount ?? 0}}
{{$entity->purchased_quantity ?? 0}}
{{$entity->last_closing_sales_amount ?? 0}}
{{$entity->earned_quantity ?? 0}}
@endforeach @endsection