@extends('admin.layouts.app') @section('content')

जिन्सी फाराम रिपोर्ट

फर्कनुहोस्
नेपाल सरकार
प्रदेश सरकार /
स्थानीय सरकारको
छाप
सङ्घ/ प्रदेश / स्थानीय तह
२ नं वडा कार्यालय
कार्यालय कोड नं.: ........
सम्पत्ति/जिन्सी मालसामानको दाखिला प्रतिवेदन
फाराम नं: ४०३ - म.ले.प.
दर्ता गर्ने सम्पत्ति वा जिन्सी मालसामानको प्रकार:- जिन्सी मालसामान(प्रयोग भएर जाने)/सम्पत्ति(प्रयोग भएर नसकिने)
आर्थिक वर्ष : {{ $fiscal_year ?? '२०८०/८१' }}
दाखिला मिति: {{ $nepali_date ?? '' }}
दाखिला प्रतिवेदन नम्बर : {{ $jinsiForm->id_no ?? '' }}
@php // Initialize all counters properly $totalQty = 0; // Total requested quantity $totalRemainingQty = 0; // Total remaining quantity $totalAmount = 0; // Total amount $totalSubtotal = 0; // Total subtotal (qty * amount) $totalTaxAmount = 0; // Total tax amount $totalWithTax = 0; // Total with tax $totalOtherExp = 0; // Total other expenses $totalGrandTotal = 0; // Total grand total foreach($jinsiForm->products as $product) { $totalQty += $product->qty; $totalRemainingQty += $product->remaining_qty; $totalAmount += $product->amount; $totalSubtotal += $product->total; $totalTaxAmount += $product->tax_amount; $totalWithTax += $product->total_with_tax; $totalOtherExp += $product->other_exp; $totalGrandTotal += $product->total_with_tax + $product->other_exp; } @endphp @forelse($jinsiForm->products as $index => $product) @php $kharidProduct = $product->kharidFormProduct; $maagProduct = $kharidProduct ? $kharidProduct->maagFormProduct : null; $productGrandTotal = $product->total_with_tax + $product->other_exp; @endphp @empty @endforelse @if($jinsiForm->other_exp > 0) @endif
क्र.सं. सङ्केत नं सम्पत्ति/जिन्सी मालसामानको विवरण मूल्य (विल विजक अनुसार) अन्य खर्च जम्मा (अन्य खर्च समेत) कैफियत
सङ्केत न. नाम स्पेसिफिकेशन मोडल पहिचान नं. निर्माण भएको देश/कम्पनी अनुमानित आयु प्राप्तिको स्रोत एकाइ परिमाण दर जम्मा मूल्य (मु.अ.कर बाहेक) मु.अ.कर जम्मा मूल्य
{{ $index + 1 }} {{ $jinsiForm->kharidForm->id_no ?? '-' }} {{ $kharidProduct->symbol_no ?? $maagProduct->symbol_no ?? '-' }} {{ $kharidProduct->product_name ?? $maagProduct->product_name ?? '-' }} {{ $kharidProduct->specification ?? $maagProduct->specification ?? '-' }} {{ $kharidProduct->model ?? '-' }} {{ $kharidProduct->identification_no ?? '-' }} {{ $kharidProduct->country_of_manufacture ?? '-' }} {{ $kharidProduct->estimated_life ?? '-' }} {{ $kharidProduct->source ?? '-' }} {{ $kharidProduct->unit ?? $maagProduct->unit ?? '-' }} {{ number_format($product->qty, 2) }} {{ number_format($product->amount, 2) }} {{ number_format($product->total, 2) }} @if($product->tax_type == 'vat') VAT (13%): @elseif($product->tax_type == 'custom') {{ $product->tax_percentage }}%: @else - @endif {{ number_format($product->tax_amount, 2) }} {{ number_format($product->total_with_tax, 2) }} {{ number_format($product->other_exp, 2) }} {{ number_format($productGrandTotal, 2) }} {{ $product->remarks ?? '-' }}
कुनै उत्पादनहरू छैनन्
जम्मा (Total): {{ number_format($totalQty, 2) }}
(Remaining: {{ number_format($totalRemainingQty, 2) }})
{{ number_format($totalAmount, 2) }} {{ number_format($totalSubtotal, 2) }} {{ number_format($totalTaxAmount, 2) }} {{ number_format($totalWithTax, 2) }} {{ number_format($totalOtherExp, 2) }} {{ number_format($totalGrandTotal, 2) }}  
थप अन्य खर्च (Additional Other Expenses): {{ number_format($jinsiForm->other_exp, 2) }} {{ number_format($jinsiForm->other_exp, 2) }}  
तयार गर्ने:
नाम: {{ $jinsiForm->requestedBy->name_in_nepali ?? ($jinsiForm->requestedBy->name ?? '_______________') }}
पद: {{ $jinsiForm->requestedBy->positioned->name ?? '_______________' }}
मितिः {{ $nepali_date ?? '_______________' }}
सिफारिस गर्ने:
नाम: {{ $jinsiForm->recommended_by ?? '_______________' }}
पद: {{ $jinsiForm->recommended_position ?? '_______________' }}
मितिः {{ $nepali_date ?? '_______________' }}
स्वीकृत गर्ने:
नाम: {{ $jinsiForm->wardchairman->name_in_nepali ?? ($jinsiForm->wardchairman->name ?? '_______________') }}
पद: वडा अध्यक्ष
मितिः {{ $nepali_date ?? '_______________' }}
@endsection