mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-02 14:24:27 -04:00
* Improve code style and PSR-12 compliance - refactored code formatting to adhere to PSR-12 guidelines - standardized coding conventions across the codebase - added missing framework files and reverted markup changes - reformatted arrays for enhanced readability - updated language files for consistent styling and clarity - minor miscellaneous improvements
90 lines
3.2 KiB
PHP
90 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* @var array $tax_jurisdictions
|
|
* @var array $tax_types
|
|
*/
|
|
?>
|
|
|
|
<?php
|
|
$i = 0;
|
|
|
|
foreach ($tax_jurisdictions as $tax_jurisdiction => $jurisdiction) {
|
|
$jurisdiction_id = $jurisdiction['jurisdiction_id'];
|
|
$jurisdiction_name = $jurisdiction['jurisdiction_name'];
|
|
$tax_group = $jurisdiction['tax_group'];
|
|
$reporting_authority = $jurisdiction['reporting_authority'];
|
|
$tax_type = $jurisdiction['tax_type'];
|
|
$tax_group_sequence = $jurisdiction['tax_group_sequence'];
|
|
$cascade_sequence = $jurisdiction['cascade_sequence'];
|
|
++$i;
|
|
?>
|
|
|
|
<div class="form-group form-group-sm" style="display: block;">
|
|
<?= form_label(lang('Taxes.tax_jurisdiction') . " $i", "jurisdiction_name_$i", ['class' => 'control-label col-xs-2']) ?>
|
|
<div class="col-xs-2">
|
|
<?php $form_data = [
|
|
'name' => 'jurisdiction_name[]',
|
|
'id' => "jurisdiction_name_$i",
|
|
'class' => 'valid_chars form-control input-sm',
|
|
'placeholder' => lang('Taxes.jurisdiction_name'),
|
|
'value' => $jurisdiction_name
|
|
];
|
|
echo form_input($form_data);
|
|
?>
|
|
</div>
|
|
|
|
<div class="col-xs-1">
|
|
<?php $form_data = [
|
|
'name' => 'tax_group[]',
|
|
'class' => 'valid_chars form-control input-sm',
|
|
'placeholder' => lang('Taxes.tax_group'),
|
|
'value' => $tax_group
|
|
];
|
|
echo form_input($form_data);
|
|
?>
|
|
</div>
|
|
|
|
<div class="col-xs-2">
|
|
<?= form_dropdown('tax_type[]' . $i, $tax_types, $tax_type, ['class' => 'form-control']) ?>
|
|
</div>
|
|
|
|
<div class="col-xs-2">
|
|
<?php $form_data = [
|
|
'name' => 'reporting_authority[]',
|
|
'class' => 'valid_chars form-control input-sm',
|
|
'placeholder' => lang('Taxes.reporting_authority'),
|
|
'value' => $reporting_authority
|
|
];
|
|
echo form_input($form_data)
|
|
?>
|
|
</div>
|
|
|
|
<div class="col-xs-1">
|
|
<?php $form_data = [
|
|
'name' => 'tax_group_sequence[]',
|
|
'class' => 'valid_chars form-control input-sm',
|
|
'placeholder' => lang('Taxes.sequence'),
|
|
'value' => $tax_group_sequence
|
|
];
|
|
echo form_input($form_data)
|
|
?>
|
|
</div>
|
|
|
|
<div class="col-xs-1">
|
|
<?php $form_data = [
|
|
'name' => 'cascade_sequence[]',
|
|
'class' => 'valid_chars form-control input-sm',
|
|
'placeholder' => lang('Taxes.cascade_sequence'),
|
|
'value' => $cascade_sequence
|
|
];
|
|
echo form_input($form_data)
|
|
?>
|
|
</div>
|
|
<span class="add_tax_jurisdiction glyphicon glyphicon-plus" style="padding-top: 0.5em;"></span>
|
|
<span> </span>
|
|
<span class="remove_tax_jurisdiction glyphicon glyphicon-minus" style="padding-top: 0.5em;"></span>
|
|
<?= form_hidden('jurisdiction_id[]', (string)$jurisdiction_id) ?>
|
|
</div>
|
|
|
|
<?php } ?>
|