mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-24 08:20:54 -04:00
Cast tax code id's to string
Signed-off-by: objecttothis <objecttothis@gmail.com>
This commit is contained in:
@@ -39,7 +39,7 @@ foreach($tax_categories as $key => $category)
|
||||
<span class="add_tax_category glyphicon glyphicon-plus" style="padding-top: 0.5em;"></span>
|
||||
<span> </span>
|
||||
<span class="remove_tax_category glyphicon glyphicon-minus" style="padding-top: 0.5em;"></span>
|
||||
<?= form_hidden('tax_category_id[]', $tax_category_id) ?>
|
||||
<?= form_hidden('tax_category_id[]', (string)$tax_category_id) ?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
@@ -62,7 +62,7 @@ foreach($tax_codes as $tax_code => $tax_code_data)
|
||||
<span class="add_tax_code glyphicon glyphicon-plus" style="padding-top: 0.5em;"></span>
|
||||
<span> </span>
|
||||
<span class="remove_tax_code glyphicon glyphicon-minus" style="padding-top: 0.5em;"></span>
|
||||
<?= form_hidden('tax_code_id[]', $tax_code_id) ?>
|
||||
<?= form_hidden('tax_code_id[]', (string)$tax_code_id) ?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@ foreach($tax_jurisdictions as $tax_jurisdiction => $jurisdiction)
|
||||
<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[]', $jurisdiction_id) ?>
|
||||
<?= form_hidden('jurisdiction_id[]', (string)$jurisdiction_id) ?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user