diff --git a/app/Controllers/Reports.php b/app/Controllers/Reports.php index 1c98d8d9d..7c6bb205c 100644 --- a/app/Controllers/Reports.php +++ b/app/Controllers/Reports.php @@ -1308,7 +1308,7 @@ class Reports extends Secure_Controller 'comment' => $row['comment'], 'edit' => anchor( 'sales/edit/' . $row['sale_id'], - '', + '', [ 'class' => 'modal-dlg print_hide', $button_key => $button_label, @@ -1435,7 +1435,7 @@ class Reports extends Secure_Controller 'comment' => $row['comment'], 'edit' => anchor( 'sales/edit/' . $row['sale_id'], - '', + '', [ 'class' => 'modal-dlg print_hide', $button_key => $button_label, @@ -1567,7 +1567,7 @@ class Reports extends Secure_Controller 'comment' => $row['comment'], 'edit' => anchor( 'sales/edit/' . $row['sale_id'], - '', + '', [ 'class' => 'modal-dlg print_hide', $button_key => $button_label, @@ -1655,7 +1655,7 @@ class Reports extends Secure_Controller 'comment' => $report_data['comment'], 'edit' => anchor( 'sales/edit/' . $report_data['sale_id'], - '', + '', [ 'class' => 'modal-dlg print_hide', $button_key => $button_label, @@ -1831,7 +1831,7 @@ class Reports extends Secure_Controller 'comment' => $row['comment'], 'edit' => anchor( 'sales/edit/' . $row['sale_id'], - '', + '', [ 'class' => 'modal-dlg print_hide', $button_key => $button_label, @@ -1911,7 +1911,7 @@ class Reports extends Secure_Controller 'comment' => $report_data['comment'], 'edit' => anchor( 'receivings/edit/' . $report_data['receiving_id'], - '', + '', [ 'class' => 'modal-dlg print_hide', 'data-btn-submit' => lang('Common.submit'), @@ -1971,7 +1971,7 @@ class Reports extends Secure_Controller 'comment' => $row['comment'], 'edit' => anchor( 'receivings/edit/' . $row['receiving_id'], - '', + '', [ 'class' => 'modal-dlg print_hide', 'data-btn-delete' => lang('Common.delete'), diff --git a/app/Helpers/tabular_helper.php b/app/Helpers/tabular_helper.php index 70effeba7..98b2bf716 100644 --- a/app/Helpers/tabular_helper.php +++ b/app/Helpers/tabular_helper.php @@ -117,19 +117,19 @@ function get_sale_data_row(object $sale): array ? '-' : anchor( "$controller/invoice/$sale->sale_id", - '', + '', ['title' => lang('Sales.show_invoice')] ); } $row['receipt'] = anchor( "$controller/receipt/$sale->sale_id", - '', + '', ['title' => lang('Sales.show_receipt')] ); $row['edit'] = anchor( "$controller/edit/$sale->sale_id", - '', + '', [ 'class' => 'modal-dlg print_hide', 'data-btn-delete' => lang('Common.delete'), @@ -231,7 +231,7 @@ function get_person_data_row(object $person): array ? '' : anchor( "Messages/view/$person->person_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -240,7 +240,7 @@ function get_person_data_row(object $person): array ), 'edit' => anchor( "$controller/view/$person->person_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -298,7 +298,7 @@ function get_customer_data_row(object $person, object $stats): array ? '' : anchor( "Messages/view/$person->person_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -307,7 +307,7 @@ function get_customer_data_row(object $person, object $stats): array ), 'edit' => anchor( "$controller/view/$person->person_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -368,7 +368,7 @@ function get_supplier_data_row(object $supplier): array ? '' : anchor( "Messages/view/$supplier->person_id", - '', + '', [ 'class' => "modal-dlg", 'data-btn-submit' => lang('Common.submit'), @@ -377,7 +377,7 @@ function get_supplier_data_row(object $supplier): array ), 'edit' => anchor( "$controller/view/$supplier->person_id", - '', + '', [ 'class' => "modal-dlg", 'data-btn-submit' => lang('Common.submit'), @@ -497,7 +497,7 @@ function get_item_data_row(object $item): array $icons = [ 'inventory' => anchor( "$controller/inventory/$item->item_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -506,7 +506,7 @@ function get_item_data_row(object $item): array ), 'stock' => anchor( "$controller/countDetails/$item->item_id", - '', + '', [ 'class' => 'modal-dlg', 'title' => lang(ucfirst($controller) . ".details_count") @@ -514,7 +514,7 @@ function get_item_data_row(object $item): array ), 'edit' => anchor( "$controller/view/$item->item_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -560,7 +560,7 @@ function get_giftcard_data_row(object $giftcard): array 'value' => to_currency($giftcard->value), 'edit' => anchor( "$controller/view/$giftcard->giftcard_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -606,7 +606,7 @@ function get_item_kit_data_row(object $item_kit): array 'total_unit_price' => to_currency($item_kit->total_unit_price), 'edit' => anchor( "$controller/view/$item_kit->item_kit_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -714,7 +714,7 @@ function get_attribute_definition_data_row(object $attribute_row): array 'definition_flags' => $definition_flags, 'edit' => anchor( "$controller/view/$attribute_row->definition_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -754,7 +754,7 @@ function get_expense_category_data_row(object $expense_category): array 'category_description' => $expense_category->category_description, 'edit' => anchor( "$controller/view/$expense_category->expense_category_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -808,7 +808,7 @@ function get_expenses_data_row(object $expense): array 'created_by' => $expense->first_name . ' ' . $expense->last_name, 'edit' => anchor( "$controller/view/$expense->expense_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -903,14 +903,14 @@ function get_cash_up_data_row(object $cash_up): array 'close_date' => to_datetime(strtotime($cash_up->close_date)), 'close_employee_id' => $cash_up->close_first_name . ' ' . $cash_up->close_last_name, 'closed_amount_cash' => to_currency($cash_up->closed_amount_cash), - 'note' => $cash_up->note ? '' : '', + 'note' => $cash_up->note ? '' : '', 'closed_amount_due' => to_currency($cash_up->closed_amount_due), 'closed_amount_card' => to_currency($cash_up->closed_amount_card), 'closed_amount_check' => to_currency($cash_up->closed_amount_check), 'closed_amount_total' => to_currency($cash_up->closed_amount_total), 'edit' => anchor( "$controller/view/$cash_up->cashup_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), diff --git a/app/Helpers/tax_helper.php b/app/Helpers/tax_helper.php index 9e5008e38..e8241c70d 100644 --- a/app/Helpers/tax_helper.php +++ b/app/Helpers/tax_helper.php @@ -36,7 +36,7 @@ function get_tax_code_data_row($tax_code_row): array 'state' => $tax_code_row->state, 'edit' => anchor( "$controller_name/view_tax_codes/$tax_code_row->tax_code", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -74,7 +74,7 @@ function get_tax_categories_data_row($tax_categories_row): array 'tax_group_sequence' => $tax_categories_row->tax_group_sequence, 'edit' => anchor( "$controller_name/view/$tax_categories_row->tax_category_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -111,7 +111,7 @@ function get_tax_jurisdictions_data_row($tax_jurisdiction_row): array 'reporting_authority' => $tax_jurisdiction_row->reporting_authority, 'edit' => anchor( "$controller_name/view/$tax_jurisdiction_row->jurisdiction_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), @@ -157,7 +157,7 @@ function get_tax_rates_data_row($tax_rates_row): array 'rounding_code_name' => Rounding_mode::get_rounding_code_name($tax_rates_row->tax_rounding_code), 'edit' => anchor( "$controller_name/view/$tax_rates_row->tax_rate_id", - '', + '', [ 'class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), diff --git a/app/Views/attributes/form.php b/app/Views/attributes/form.php index 2b47e354a..10c85b8a3 100644 --- a/app/Views/attributes/form.php +++ b/app/Views/attributes/form.php @@ -83,7 +83,7 @@
'definition_value', 'class' => 'form-control input-sm', 'id' => 'definition_value']) ?> - +
diff --git a/app/Views/attributes/item.php b/app/Views/attributes/item.php index c9ae3e86d..7651bf335 100644 --- a/app/Views/attributes/item.php +++ b/app/Views/attributes/item.php @@ -92,7 +92,7 @@ } ?> - + diff --git a/app/Views/attributes/manage.php b/app/Views/attributes/manage.php index 7130189c2..91e9e5478 100644 --- a/app/Views/attributes/manage.php +++ b/app/Views/attributes/manage.php @@ -23,14 +23,14 @@
diff --git a/app/Views/cashups/form.php b/app/Views/cashups/form.php index 052c6733b..9d69faa62 100644 --- a/app/Views/cashups/form.php +++ b/app/Views/cashups/form.php @@ -23,7 +23,7 @@
- + 'open_date', @@ -87,7 +87,7 @@
- + 'close_date', diff --git a/app/Views/cashups/manage.php b/app/Views/cashups/manage.php index 75ae7cb13..22e780ee5 100644 --- a/app/Views/cashups/manage.php +++ b/app/Views/cashups/manage.php @@ -48,17 +48,17 @@
diff --git a/app/Views/configs/email_config.php b/app/Views/configs/email_config.php index 6396a978b..98a118f13 100644 --- a/app/Views/configs/email_config.php +++ b/app/Views/configs/email_config.php @@ -96,7 +96,7 @@
- + 'smtp_user', @@ -113,7 +113,7 @@
- + 'smtp_pass', diff --git a/app/Views/configs/general_config.php b/app/Views/configs/general_config.php index b9c9f71da..2e5581edf 100644 --- a/app/Views/configs/general_config.php +++ b/app/Views/configs/general_config.php @@ -31,7 +31,7 @@
@@ -124,7 +124,7 @@ ]) ?>  
@@ -194,7 +194,7 @@
- + 'image_max_width', @@ -213,7 +213,7 @@
- + 'image_max_height', @@ -232,7 +232,7 @@
- + 'image_max_size', @@ -279,7 +279,7 @@ ]) ?>
@@ -400,7 +400,7 @@ ]) ?>  
diff --git a/app/Views/configs/info_config.php b/app/Views/configs/info_config.php index 01506465e..fc18560cf 100644 --- a/app/Views/configs/info_config.php +++ b/app/Views/configs/info_config.php @@ -18,7 +18,7 @@
- + 'company', @@ -67,7 +67,7 @@
- + 'website', @@ -84,7 +84,7 @@
- + 'email', @@ -102,7 +102,7 @@
- + 'phone', @@ -119,7 +119,7 @@
- + 'fax', diff --git a/app/Views/configs/integrations_config.php b/app/Views/configs/integrations_config.php index ea5881643..a494fba2c 100644 --- a/app/Views/configs/integrations_config.php +++ b/app/Views/configs/integrations_config.php @@ -18,7 +18,7 @@
- + 'mailchimp_api_key', @@ -31,7 +31,7 @@ @@ -42,7 +42,7 @@
- +
@@ -188,7 +188,7 @@ diff --git a/app/Views/configs/message_config.php b/app/Views/configs/message_config.php index 3ddae26b6..fcd6402f9 100644 --- a/app/Views/configs/message_config.php +++ b/app/Views/configs/message_config.php @@ -16,7 +16,7 @@
- + 'msg_uid', @@ -33,7 +33,7 @@
- + 'msg_pwd', @@ -50,7 +50,7 @@
- + 'msg_src', diff --git a/app/Views/customers/form.php b/app/Views/customers/form.php index c314ac6e4..2aa45698d 100644 --- a/app/Views/customers/form.php +++ b/app/Views/customers/form.php @@ -175,7 +175,7 @@ 'control-label col-xs-3']) ?>
- + 'date', 'id' => 'datetime', diff --git a/app/Views/customers/form_csv_import.php b/app/Views/customers/form_csv_import.php index a915f1699..1ca85c018 100644 --- a/app/Views/customers/form_csv_import.php +++ b/app/Views/customers/form_csv_import.php @@ -12,7 +12,9 @@
-
+
+ +
diff --git a/app/Views/employees/form.php b/app/Views/employees/form.php index ba12ffde5..1a8e0a777 100644 --- a/app/Views/employees/form.php +++ b/app/Views/employees/form.php @@ -38,7 +38,7 @@ 'required control-label col-xs-3']) ?>
- + 'username', 'id' => 'username', @@ -55,7 +55,7 @@ 'control-label col-xs-3'])) ?>
- + 'password', 'id' => 'password', @@ -69,7 +69,7 @@ 'control-label col-xs-3'])) ?>
- + 'repeat_password', 'id' => 'repeat_password', diff --git a/app/Views/expenses/form.php b/app/Views/expenses/form.php index 64407e8e1..a65f9decb 100644 --- a/app/Views/expenses/form.php +++ b/app/Views/expenses/form.php @@ -24,7 +24,7 @@ 'required control-label col-xs-3']) ?>
- + 'date', 'class' => 'form-control input-sm datetime', @@ -52,7 +52,7 @@
diff --git a/app/Views/expenses/manage.php b/app/Views/expenses/manage.php index f3bfd12dd..613b3a4b1 100644 --- a/app/Views/expenses/manage.php +++ b/app/Views/expenses/manage.php @@ -56,17 +56,17 @@
diff --git a/app/Views/giftcards/manage.php b/app/Views/giftcards/manage.php index c8b103a13..4dc0b8fe9 100644 --- a/app/Views/giftcards/manage.php +++ b/app/Views/giftcards/manage.php @@ -22,14 +22,14 @@
diff --git a/app/Views/home/form_change_password.php b/app/Views/home/form_change_password.php index 71d431cbe..53d0191fe 100644 --- a/app/Views/home/form_change_password.php +++ b/app/Views/home/form_change_password.php @@ -16,7 +16,9 @@ 'required control-label col-xs-3']) ?>
- + + + 'username', 'id' => 'username', @@ -34,7 +36,9 @@ 'control-label col-xs-3'])) ?>
- + + + 'current_password', 'id' => 'current_password', @@ -48,7 +52,9 @@ 'control-label col-xs-3'])) ?>
- + + + 'password', 'id' => 'password', @@ -62,7 +68,9 @@ 'control-label col-xs-3'])) ?>
- + + + 'repeat_password', 'id' => 'repeat_password', diff --git a/app/Views/item_kits/form.php b/app/Views/item_kits/form.php index dde0d1f0f..f1eb486ca 100644 --- a/app/Views/item_kits/form.php +++ b/app/Views/item_kits/form.php @@ -18,7 +18,7 @@ 'control-label col-xs-3']) ?>
- + 'item_kit_number', 'id' => 'item_kit_number', @@ -192,7 +192,7 @@ - + @@ -218,7 +218,7 @@ $('#item_kit_item_' + ui.item.value).val(parseFloat($('#item_kit_item_' + ui.item.value).val()) + 1); } else { $('#item_kit_items').append('' + - '' + + '' + '' + '' + DOMPurify.sanitize(ui.item.label) + '' + '' + diff --git a/app/Views/item_kits/manage.php b/app/Views/item_kits/manage.php index 6056e2883..99a401190 100644 --- a/app/Views/item_kits/manage.php +++ b/app/Views/item_kits/manage.php @@ -30,18 +30,18 @@
diff --git a/app/Views/items/form.php b/app/Views/items/form.php index f14002fc7..0912ee1ea 100644 --- a/app/Views/items/form.php +++ b/app/Views/items/form.php @@ -35,7 +35,9 @@ 'control-label col-xs-3']) ?>
- + + + 'item_number', 'id' => 'item_number', @@ -62,7 +64,9 @@ 'required control-label col-xs-3']) ?>
- + + + 'form-control']); diff --git a/app/Views/items/form_bulk.php b/app/Views/items/form_bulk.php index e4c32d712..0e7bb394d 100644 --- a/app/Views/items/form_bulk.php +++ b/app/Views/items/form_bulk.php @@ -29,7 +29,9 @@ 'control-label col-xs-3']) ?>
- + + + 'category', 'id' => 'category', diff --git a/app/Views/items/form_count_details.php b/app/Views/items/form_count_details.php index 242888fb7..7b35f6300 100644 --- a/app/Views/items/form_count_details.php +++ b/app/Views/items/form_count_details.php @@ -16,7 +16,9 @@ use App\Models\Inventory; 'control-label col-xs-3']) ?>
- + + + 'item_number', 'id' => 'item_number', @@ -45,7 +47,9 @@ use App\Models\Inventory; 'control-label col-xs-3']) ?>
- + + + 'category', 'id' => 'category', diff --git a/app/Views/items/form_csv_import.php b/app/Views/items/form_csv_import.php index 96a7ce6a4..cb4e1b985 100644 --- a/app/Views/items/form_csv_import.php +++ b/app/Views/items/form_csv_import.php @@ -12,7 +12,7 @@
-
+
diff --git a/app/Views/items/form_inventory.php b/app/Views/items/form_inventory.php index 690057d76..086c50537 100644 --- a/app/Views/items/form_inventory.php +++ b/app/Views/items/form_inventory.php @@ -17,7 +17,9 @@ 'control-label col-xs-3']) ?>
- + + + 'item_number', 'id' => 'item_number', @@ -46,7 +48,9 @@ 'control-label col-xs-3']) ?>
- + + + 'category', 'id' => 'category', diff --git a/app/Views/items/manage.php b/app/Views/items/manage.php index 526d0a16c..e3e24ad9e 100644 --- a/app/Views/items/manage.php +++ b/app/Views/items/manage.php @@ -78,24 +78,24 @@ use App\Models\Employee;
- +    - +
diff --git a/app/Views/partial/dinner_tables.php b/app/Views/partial/dinner_tables.php index 899a9aaeb..949d86c1f 100644 --- a/app/Views/partial/dinner_tables.php +++ b/app/Views/partial/dinner_tables.php @@ -28,9 +28,9 @@ foreach ($dinner_tables as $table_key => $table) { echo form_input($form_data); ?>
- +    - +
diff --git a/app/Views/partial/header.php b/app/Views/partial/header.php index 3bb51ac57..29e213f19 100644 --- a/app/Views/partial/header.php +++ b/app/Views/partial/header.php @@ -20,6 +20,7 @@ $request = Services::request(); <?= esc($config['company']) . ' | ' . lang('Common.powered_by') . ' OSPOS ' . esc(config('App')->application_version) ?> + getGet('debug') == 'true') : ?> diff --git a/app/Views/partial/stock_locations.php b/app/Views/partial/stock_locations.php index 356212728..aa0a563ea 100644 --- a/app/Views/partial/stock_locations.php +++ b/app/Views/partial/stock_locations.php @@ -26,9 +26,9 @@ foreach ($stock_locations as $location => $location_data) { echo form_input($form_data); ?>
- +    - +
diff --git a/app/Views/partial/tax_categories.php b/app/Views/partial/tax_categories.php index f556090b4..05df0c879 100644 --- a/app/Views/partial/tax_categories.php +++ b/app/Views/partial/tax_categories.php @@ -37,9 +37,9 @@ foreach ($tax_categories as $key => $category) { echo form_input($form_data); ?>
- +    - +
diff --git a/app/Views/partial/tax_codes.php b/app/Views/partial/tax_codes.php index 65fe0a0ba..7dd0dfa1e 100644 --- a/app/Views/partial/tax_codes.php +++ b/app/Views/partial/tax_codes.php @@ -60,9 +60,9 @@ foreach ($tax_codes as $tax_code => $tax_code_data) { ?>
- +    - +
diff --git a/app/Views/partial/tax_jurisdictions.php b/app/Views/partial/tax_jurisdictions.php index c0190b384..7016d4fe0 100644 --- a/app/Views/partial/tax_jurisdictions.php +++ b/app/Views/partial/tax_jurisdictions.php @@ -80,9 +80,9 @@ foreach ($tax_jurisdictions as $tax_jurisdiction => $jurisdiction) { echo form_input($form_data) ?>
- +    - +
diff --git a/app/Views/people/form_basic_info.php b/app/Views/people/form_basic_info.php index d3822a452..bab79cff7 100644 --- a/app/Views/people/form_basic_info.php +++ b/app/Views/people/form_basic_info.php @@ -58,7 +58,9 @@ 'control-label col-xs-3']) ?>
- + + + 'email', 'id' => 'email', @@ -73,7 +75,9 @@ 'control-label col-xs-3']) ?>
- + + + 'phone_number', 'id' => 'phone_number', diff --git a/app/Views/people/manage.php b/app/Views/people/manage.php index 598b4d44a..e87ba52e3 100644 --- a/app/Views/people/manage.php +++ b/app/Views/people/manage.php @@ -35,21 +35,21 @@
diff --git a/app/Views/receivings/receipt.php b/app/Views/receivings/receipt.php index 22b5bc380..549d0de0e 100644 --- a/app/Views/receivings/receipt.php +++ b/app/Views/receivings/receipt.php @@ -28,9 +28,9 @@ echo view('partial/print_receipt', ['print_after_sale', $print_after_sale, 'sele
diff --git a/app/Views/receivings/receiving.php b/app/Views/receivings/receiving.php index f516c1d6d..d646f3272 100644 --- a/app/Views/receivings/receiving.php +++ b/app/Views/receivings/receiving.php @@ -93,7 +93,7 @@ if (isset($success)) {
  • @@ -133,7 +133,7 @@ if (isset($success)) { 'form-horizontal', 'id' => "cart_$line"]) ?> - ') ?> + ') ?>
    @@ -198,7 +198,7 @@ if (isset($success)) { ').submit();" title=> - + @@ -272,7 +272,7 @@ if (isset($success)) {  ' . lang('Common.remove') . ' ' . lang('Suppliers.supplier'), + '' . lang('Common.remove') . ' ' . lang('Suppliers.supplier'), [ 'class' => 'btn btn-danger btn-sm', 'id' => 'remove_supplier_button', @@ -296,7 +296,7 @@ if (isset($success)) { ]) ?>
    @@ -334,10 +334,10 @@ if (isset($success)) { ]) ?>
    -   +
    -   +
    @@ -415,10 +415,10 @@ if (isset($success)) {
    -   +
    -   +
    diff --git a/app/Views/reports/listing.php b/app/Views/reports/listing.php index 8a78733aa..69fefcd5f 100644 --- a/app/Views/reports/listing.php +++ b/app/Views/reports/listing.php @@ -31,7 +31,7 @@ if (isset($error)) {
    -

     

    +

    -

     

    +

    -

     

    +

    $prefix) { @@ -87,7 +87,7 @@ if (isset($error)) {
    -

     

    +

    -
     ' . lang('Common.print') ?>
    +
    ' . lang('Common.print') ?>
     ' . lang('Common.print'), ['class' => 'btn btn-info btn-sm', 'id' => 'show_print_button', 'onclick' => 'window.print();')); + * echo anchor('sales', '' . lang('Common.print'), ['class' => 'btn btn-info btn-sm', 'id' => 'show_print_button', 'onclick' => 'window.print();')); */ ?> -
     ' . lang('Sales.send_invoice') ?>
    +
    ' . lang('Sales.send_invoice') ?>
    -  ' . lang('Sales.register'), ['class' => 'btn btn-info btn-sm', 'id' => 'show_sales_button']) ?> -  ' . lang('Sales.takings'), ['class' => 'btn btn-info btn-sm', 'id' => 'show_takings_button']) ?> + ' . lang('Sales.register'), ['class' => 'btn btn-info btn-sm', 'id' => 'show_sales_button']) ?> + ' . lang('Sales.takings'), ['class' => 'btn btn-info btn-sm', 'id' => 'show_takings_button']) ?>
    diff --git a/app/Views/sales/manage.php b/app/Views/sales/manage.php index dc5eacef2..17aa86b1b 100644 --- a/app/Views/sales/manage.php +++ b/app/Views/sales/manage.php @@ -74,15 +74,15 @@