Merge pull request #1239 from RuleDomain/make-sales-tax-code-uppercase

Make Sales Tax Code uppercase
This commit is contained in:
FrancescoUK
2017-04-16 08:52:05 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@
<?php echo form_input(array(
'name' => 'default_origin_tax_code',
'id' => 'default_origin_tax_code',
'class' => 'form-control input-sm',
'class' => 'form-control input-sm text-uppercase',
'value'=>$this->config->item('default_origin_tax_code'))); ?>
</div>
</div>

View File

@@ -10,7 +10,7 @@
<?php echo form_input(array(
'name'=>'tax_code',
'id'=>'tax_code',
'class'=>'form-control input-sm',
'class'=>'form-control input-sm text-uppercase',
'value'=>$tax_code)
);?>
</div>