@include('print.common.css')
{{ $printData['name'] }}
@include('print.common.header')
#: {{ $transfer->transfer_code }}
{{ __('app.date') }}: {{ $transfer->formatted_transfer_date }}
{{ __('app.time') }}: {{ $transfer->format_created_time }}
@php $isHasBatchItem = ($transfer->itemTransaction->where('tracking_type', 'batch')->count() > 0) ? true : false; //Return from Controller $totalBatchTrackingRowCount = ($isHasBatchItem) ? $batchTrackingRowCount : 0; @endphp @if(app('company')['show_hsn']) @endif @if($isHasBatchItem) @if(app('company')['enable_batch_tracking']) @endif @if(app('company')['enable_mfg_date']) @endif @if(app('company')['enable_exp_date']) @endif @if(app('company')['enable_model']) @endif @if(app('company')['enable_color']) @endif @if(app('company')['enable_size']) @endif @endif @if(app('company')['show_mrp']) @endif @php $i=1; @endphp @foreach($transfer->itemTransaction as $transaction) @if(app('company')['show_hsn']) @endif @if($isHasBatchItem) @if(app('company')['enable_batch_tracking']) @endif @if(app('company')['enable_mfg_date']) @endif @if(app('company')['enable_exp_date']) @endif @if(app('company')['enable_model']) @endif @if(app('company')['enable_color']) @endif @if(app('company')['enable_size']) @endif @endif @if(app('company')['show_mrp']) @endif @endforeach
# {{ __('warehouse.from_warehouse') }} {{ __('warehouse.to_warehouse') }} {{ __('item.item') }}{{ __('item.hsn') }}{{ __('item.batch_no') }}{{ __('item.mfg_date') }}{{ __('item.exp_date') }}{{ __('item.model_no') }}{{ __('item.color') }}{{ __('item.size') }}{{ __('item.mrp') }}{{ __('app.qty') }}
{{ $i++ }} {{ $transaction->itemStockTransfer->fromWarehouse->name }} {{ $transaction->itemStockTransfer->toWarehouse->name }} {{ $transaction->item->name }} {{ $transaction->description }} @if ($transaction->itemSerialTransaction->count() > 0)
{{ $transaction->itemSerialTransaction->pluck('itemSerialMaster.serial_code')->implode(',') }}
@endif
{{ $transaction->item->hsn }} {{ $transaction->batch ? $transaction->batch->itemBatchMaster->batch_no : '' }} {{ $transaction->batch ? $formatDate->toUserDateFormat($transaction->batch->itemBatchMaster->mfg_date) : '' }} {{ $transaction->batch ? $formatDate->toUserDateFormat($transaction->batch->itemBatchMaster->exp_date) : '' }} {{ $transaction->batch ? $transaction->batch->itemBatchMaster->model_no : ''}} {{ $transaction->batch ? $transaction->batch->itemBatchMaster->color :'' }} {{ $transaction->batch ? $transaction->batch->itemBatchMaster->size : '' }} {{ $formatNumber->formatWithPrecision($transaction->batch ? $transaction->batch->itemBatchMaster->mrp : $transaction->mrp)}} {{ $formatNumber->formatQuantity($transaction->quantity) }}
{{ __('app.total') }} {{ $formatNumber->formatWithPrecision($transfer->itemTransaction->sum('quantity')) }}
@include('print.common.bank-signature', ['hideBankDetails'=> true])