[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: sale_line_details.blade.php
<table class="table @if(!empty($for_ledger)) table-slim mb-0 bg-light-gray @else bg-gray @endif" @if(!empty($for_pdf)) style="width: 100%;" @endif> <tr @if(empty($for_ledger)) class="bg-green" @endif> <th>#</th> <th>{{ __('sale.product') }}</th> @if( session()->get('business.enable_lot_number') == 1 && empty($for_ledger)) <th>{{ __('lang_v1.lot_n_expiry') }}</th> @endif @if($sell->type == 'sales_order') <th>@lang('lang_v1.quantity_remaining')</th> @endif <th>{{ __('sale.qty') }}</th> @if(!empty($pos_settings['inline_service_staff'])) <th> @lang('restaurant.service_staff') </th> @endif <th>{{ __('sale.unit_price') }}</th> <th>{{ __('sale.discount') }}</th> <th>{{ __('sale.tax') }}</th> <th>{{ __('sale.price_inc_tax') }}</th> <th>{{ __('sale.subtotal') }}</th> </tr> @foreach($sell->sell_lines as $sell_line) <tr> <td>{{ $loop->iteration }}</td> <td> {{ $sell_line->product->name }} @if( $sell_line->product->type == 'variable') - {{ $sell_line->variations->product_variation->name ?? ''}} - {{ $sell_line->variations->name ?? ''}}, @endif {{ $sell_line->variations->sub_sku ?? ''}} @php $brand = $sell_line->product->brand; @endphp @if(!empty($brand->name)) , {{$brand->name}} @endif @if(!empty($sell_line->sell_line_note)) <br> {{$sell_line->sell_line_note}} @endif @if($is_warranty_enabled && !empty($sell_line->warranties->first()) ) <br><small>{{$sell_line->warranties->first()->display_name ?? ''}} - {{ @format_date($sell_line->warranties->first()->getEndDate($sell->transaction_date))}}</small> @if(!empty($sell_line->warranties->first()->description)) <br><small>{{$sell_line->warranties->first()->description ?? ''}}</small> @endif @endif @if(in_array('kitchen', $enabled_modules) && empty($for_ledger)) <br><span class="label @if($sell_line->res_line_order_status == 'cooked' ) bg-red @elseif($sell_line->res_line_order_status == 'served') bg-green @else bg-light-blue @endif">@lang('restaurant.order_statuses.' . $sell_line->res_line_order_status) </span> @endif </td> @if( session()->get('business.enable_lot_number') == 1 && empty($for_ledger)) <td>{{ $sell_line->lot_details->lot_number ?? '--' }} @if( session()->get('business.enable_product_expiry') == 1 && !empty($sell_line->lot_details->exp_date)) ({{@format_date($sell_line->lot_details->exp_date)}}) @endif </td> @endif @if($sell->type == 'sales_order') <td><span class="display_currency" data-currency_symbol="false" data-is_quantity="true">{{ $sell_line->quantity - $sell_line->so_quantity_invoiced }}</span> @if(!empty($sell_line->sub_unit)) {{$sell_line->sub_unit->short_name}} @else {{$sell_line->product->unit->short_name}} @endif</td> @endif <td> @if(!empty($for_ledger)) {{@format_quantity($sell_line->quantity)}} @else <span class="display_currency" data-currency_symbol="false" data-is_quantity="true">{{ $sell_line->quantity }}</span> @endif @if(!empty($sell_line->sub_unit)) {{$sell_line->sub_unit->short_name}} @else {{$sell_line->product->unit->short_name}} @endif @if(!empty($sell_line->product->second_unit) && $sell_line->secondary_unit_quantity != 0) <br> @if(!empty($for_ledger)) {{@format_quantity($sell_line->secondary_unit_quantity)}} @else <span class="display_currency" data-is_quantity="true" data-currency_symbol="false">{{ $sell_line->secondary_unit_quantity }}</span> @endif {{$sell_line->product->second_unit->short_name}} @endif </td> @if(!empty($pos_settings['inline_service_staff'])) <td> {{ $sell_line->service_staff->user_full_name ?? '' }} </td> @endif <td> @if(!empty($for_ledger)) @format_currency($sell_line->unit_price_before_discount) @else <span class="display_currency" data-currency_symbol="true">{{ $sell_line->unit_price_before_discount }}</span> @endif </td> <td> @if(!empty($for_ledger)) @format_currency($sell_line->get_discount_amount()) @else <span class="display_currency" data-currency_symbol="true">{{ $sell_line->get_discount_amount() }}</span> @endif @if($sell_line->line_discount_type == 'percentage') ({{$sell_line->line_discount_amount}}%) @endif </td> <td> @if(!empty($for_ledger)) @format_currency($sell_line->item_tax) @else <span class="display_currency" data-currency_symbol="true">{{ $sell_line->item_tax }}</span> @endif @if(!empty($taxes[$sell_line->tax_id])) ( {{ $taxes[$sell_line->tax_id]}} ) @endif </td> <td> @if(!empty($for_ledger)) @format_currency($sell_line->unit_price_inc_tax) @else <span class="display_currency" data-currency_symbol="true">{{ $sell_line->unit_price_inc_tax }}</span> @endif </td> <td> @if(!empty($for_ledger)) @format_currency($sell_line->quantity * $sell_line->unit_price_inc_tax) @else <span class="display_currency" data-currency_symbol="true">{{ $sell_line->quantity * $sell_line->unit_price_inc_tax }}</span> @endif </td> </tr> @if(!empty($sell_line->modifiers)) @foreach($sell_line->modifiers as $modifier) <tr> <td> </td> <td> {{ $modifier->product->name }} - {{ $modifier->variations->name ?? ''}}, {{ $modifier->variations->sub_sku ?? ''}} </td> @if( session()->get('business.enable_lot_number') == 1) <td> </td> @endif <td>{{ $modifier->quantity }}</td> @if(!empty($pos_settings['inline_service_staff'])) <td> </td> @endif <td> @if(!empty($for_ledger)) @format_currency($modifier->unit_price) @else <span class="display_currency" data-currency_symbol="true">{{ $modifier->unit_price }}</span> @endif </td> <td> </td> <td> @if(!empty($for_ledger)) @format_currency($modifier->item_tax) @else <span class="display_currency" data-currency_symbol="true">{{ $modifier->item_tax }}</span> @endif @if(!empty($taxes[$modifier->tax_id])) ( {{ $taxes[$modifier->tax_id]}} ) @endif </td> <td> @if(!empty($for_ledger)) @format_currency($modifier->unit_price_inc_tax) @else <span class="display_currency" data-currency_symbol="true">{{ $modifier->unit_price_inc_tax }}</span> @endif </td> <td> @if(!empty($for_ledger)) @format_currency($modifier->quantity * $modifier->unit_price_inc_tax) @else <span class="display_currency" data-currency_symbol="true">{{ $modifier->quantity * $modifier->unit_price_inc_tax }}</span> @endif </td> </tr> @endforeach @endif @endforeach </table>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285