diff --git a/resources/views/pages/pdfs/banking_invoice.blade.php b/resources/views/pages/pdfs/banking_invoice.blade.php index 2e371273..f56f139f 100644 --- a/resources/views/pages/pdfs/banking_invoice.blade.php +++ b/resources/views/pages/pdfs/banking_invoice.blade.php @@ -1,6 +1,9 @@ @extends('layouts.base_pdf') @section('inner_content') +
@@ -75,17 +78,9 @@


-
-

{{ \App\Classes\General\Helper::convert(round($transaction->amount, 2)) }}

- Notes:
- 1. All cheques should be crossed and made payable to CIEF WORLDWIDE SDN. BHD. (MAYBANK) MBB-568603010762
- 2. Goods sold are neither returnable nor refundable. Otherwise a cancellation fee of 20% on purchase price will be imposed.
- 3. Interest rate 2% per month will be charged on all overdue bills.
- 4. Price offered on invoice is based on present as at the current invoice date.

- No any price amendment will be allowed after invoice being chop & sign.
- CIEF WORLDWIDE SDN. BHD.
-
-

+
+
+ @@ -94,4 +89,21 @@
+ + {{-- Notes: ONLY on last page --}} + +
+
+ Notes:
+ 1. All cheques should be crossed and made payable to CIEF WORLDWIDE SDN. BHD. (MAYBANK) MBB-568603010762
+ 2. Goods sold are neither returnable nor refundable. Otherwise a cancellation fee of 20% on purchase price will be imposed.
+ 3. Interest rate 2% per month will be charged on all overdue bills.
+ 4. Price offered on invoice is based on present as at the current invoice date.

+ No any price amendment will be allowed after invoice being chop & sign.
+ CIEF WORLDWIDE SDN. BHD.
+
+
@endsection diff --git a/resources/views/pages/pdfs/deliver_order_banking.blade.php b/resources/views/pages/pdfs/deliver_order_banking.blade.php index b03fa588..3092be26 100644 --- a/resources/views/pages/pdfs/deliver_order_banking.blade.php +++ b/resources/views/pages/pdfs/deliver_order_banking.blade.php @@ -1,5 +1,9 @@ @extends('layouts.base_pdf') @section('inner_content') + +


@@ -74,23 +78,10 @@ $voucher_redemption = $voucher_redemption ?? null; ?> - @include('pages.pdfs.purchase_order_table_v2') + @include('pages.pdfs.purchase_order_table_v3')

- - - - - - - -
- CIEF WORLDWIDE SDN BHD
-
- E & O.E
- Receive In Good Order & Condition
-
@@ -100,4 +91,27 @@
+ + {{-- Notes: ONLY on last page --}} + +
+
+ + + + + + + +
+ CIEF WORLDWIDE SDN BHD
+
+ E & O.E
+ Receive In Good Order & Condition
+
+
+
@endsection diff --git a/resources/views/pages/pdfs/purchase_order_table_v3.blade.php b/resources/views/pages/pdfs/purchase_order_table_v3.blade.php new file mode 100644 index 00000000..30ad7b45 --- /dev/null +++ b/resources/views/pages/pdfs/purchase_order_table_v3.blade.php @@ -0,0 +1,47 @@ + + + + + + + + + + + + @php + $totalQuantity = 0; + @endphp + + @if (!empty($po_order_transaction) && $po_order_transaction->transactionDetails) + @foreach ($po_order_transaction->transactionDetails as $key => $transaction_detail) + @php + $totalQuantity += $transaction_detail->quantity; + @endphp + + + + + + + + @endforeach + @endif + + + + + + + + + +
NoStock CodeDescriptionQuantity
{{ $key + 1 }} + {{ $transaction_detail->product_code }} + + {{ $transaction_detail->product_name }} + + {{ $transaction_detail->quantity }} +
Total Quantity + {{ $totalQuantity }} +