mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-09 06:46:08 -06:00
comments
This commit is contained in:
parent
6661c54cd6
commit
6fbcdb1723
@ -19,7 +19,7 @@ class VisiosoftModuleAdvsCreateTaxField extends Migration
|
|||||||
'tax' => [
|
'tax' => [
|
||||||
'type' => 'anomaly.field_type.integer',
|
'type' => 'anomaly.field_type.integer',
|
||||||
'config' => [
|
'config' => [
|
||||||
'default_value' => null,
|
'default_value' => 0,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|||||||
@ -375,6 +375,6 @@ return [
|
|||||||
'name' => 'Publish Date'
|
'name' => 'Publish Date'
|
||||||
],
|
],
|
||||||
'tax' => [
|
'tax' => [
|
||||||
'name' => 'KDV Dahil Oranı'
|
'name' => 'KDV Oranı'
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|||||||
@ -157,7 +157,7 @@
|
|||||||
<div class="py-2 pr-3">
|
<div class="py-2 pr-3">
|
||||||
<div class="input-wrapper">
|
<div class="input-wrapper">
|
||||||
<select class="custom-select form-control" name="tax">
|
<select class="custom-select form-control" name="tax">
|
||||||
<option value=""></option>
|
<option value="0" {{ (form.fields.tax.value == "0") ? 'selected':'' }}>0</option>
|
||||||
<option value="1" {{ (form.fields.tax.value == "1") ? 'selected':'' }}>%1</option>
|
<option value="1" {{ (form.fields.tax.value == "1") ? 'selected':'' }}>%1</option>
|
||||||
<option value="8"{{ (form.fields.tax.value == "8") ? 'selected':'' }}>%8</option>
|
<option value="8"{{ (form.fields.tax.value == "8") ? 'selected':'' }}>%8</option>
|
||||||
<option value="18"{{ (form.fields.tax.value == "18") ? 'selected':'' }}>%18</option>
|
<option value="18"{{ (form.fields.tax.value == "18") ? 'selected':'' }}>%18</option>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user