@extends('layouts.master') @section('css') @endsection @section('title') Purchase @endsection @section('content')
{{ $accountingVoucher->voucherType->name }}
{{ $accountingVoucher->voucher_number }}
{{ \Carbon\Carbon::parse($accountingVoucher->voucher_date)->format('d M Y') }}
{{ $accountingVoucher->debitLedger->name ?? '---' }}
{{ $accountingVoucher->creditLedger->name ?? '---' }}
Interstate(IGST)
@elseIntrastate
@endif{{ $accountingVoucher->stockLocation->name ?? '--' }}
{{ $accountingVoucher->supplier_invoice_no ?? '--' }}
{{ $accountingVoucher->supplier_invoice_date ?? '--' }}
{{ $accountingVoucher->remarks ?? '--' }}
| # | Item | Internal Barcode |
MRP | Qty | Unit | Price | Gross Value | Dis % | @if (Auth::user()->company_profile->landing_cost_purchase)Landing Cost Inc Gst | @endifTaxable Value | CGST | SGST | IGST | CESS | Total | Missing Qty | Cost Allocation |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->stockItem->name }}@if ($item->variant_id != null)
({{ $item->variant->name }}) @endif @if (Auth::user()->company_profile->use_serial == 1) @endif |
{{ $item->stockItem->internal_barcode ?? '--' }} | {{ $item->stockItem->getMrp($accountingVoucher->voucher_date) }} | {{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->price }} | {{ $item->gross_value }} | {{ $item->disc_percentage }} | @if (Auth::user()->company_profile->landing_cost_purchase){{ $item->landing_cost_inc_gst }} | @endif{{ $item->taxable_value }} | {{ $item->cgst }} | {{ $item->sgst }} | {{ $item->igst }} | {{ $item->cess }} | {{ $item->total }} |
@if ($item->missing_qty > 0)
{{ $item->missing_qty }} @endif |
@if(Auth::user()->company_profile->item_cost_allocation == 1)
Cost Allocation | @endif
| Account Name | Amount |
|---|---|
| {{ $accountingVoucherDetail->ledger->name }} | {{ $accountingVoucherDetail->amount }} {{ $accountingVoucherDetail->dr_or_cr }} |