This commit is contained in:
@@ -35,10 +35,9 @@ MISC ITEMS THAT CAME UP
|
|||||||
|
|
||||||
todo: BUGBUG delete all tags from customer, go back in and zone2 appears for some reason
|
todo: BUGBUG delete all tags from customer, go back in and zone2 appears for some reason
|
||||||
|
|
||||||
todo: percentage control
|
todo: v8migrate tax codes convert to pct currently wrongly using fractional value (i.e. multiply by 100)
|
||||||
Not actually that complex, just shows percentage but when in edit mode is decimal
|
|
||||||
copy decimal control and convert into pctg.
|
|
||||||
then replace decimal controls in acc-tax-code and svc-contract with it
|
|
||||||
|
|
||||||
todo: NOT import PO's unless they are current, active and unreceived
|
todo: NOT import PO's unless they are current, active and unreceived
|
||||||
todo: erase database should reset all id values if they aren't reset already so that future data doesn't result in a new PO starting at 29000 due to huge db trial seed prior
|
todo: erase database should reset all id values if they aren't reset already so that future data doesn't result in a new PO starting at 29000 due to huge db trial seed prior
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
lg="4"
|
lg="4"
|
||||||
xl="3"
|
xl="3"
|
||||||
>
|
>
|
||||||
<gz-decimal
|
<gz-percent
|
||||||
v-model="obj.taxAPct"
|
v-model="obj.taxAPct"
|
||||||
:readonly="formState.readOnly"
|
:readonly="formState.readOnly"
|
||||||
:label="$ay.t('TaxCodeTaxA')"
|
:label="$ay.t('TaxCodeTaxA')"
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
]"
|
]"
|
||||||
:error-messages="form().serverErrors(this, 'taxAPct')"
|
:error-messages="form().serverErrors(this, 'taxAPct')"
|
||||||
@input="fieldValueChanged('taxAPct')"
|
@input="fieldValueChanged('taxAPct')"
|
||||||
></gz-decimal>
|
></gz-percent>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col
|
<v-col
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
lg="4"
|
lg="4"
|
||||||
xl="3"
|
xl="3"
|
||||||
>
|
>
|
||||||
<gz-decimal
|
<gz-percent
|
||||||
v-model="obj.taxBPct"
|
v-model="obj.taxBPct"
|
||||||
:readonly="formState.readOnly"
|
:readonly="formState.readOnly"
|
||||||
:label="$ay.t('TaxCodeTaxB')"
|
:label="$ay.t('TaxCodeTaxB')"
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
]"
|
]"
|
||||||
:error-messages="form().serverErrors(this, 'taxBPct')"
|
:error-messages="form().serverErrors(this, 'taxBPct')"
|
||||||
@input="fieldValueChanged('taxBPct')"
|
@input="fieldValueChanged('taxBPct')"
|
||||||
></gz-decimal>
|
></gz-percent>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col
|
<v-col
|
||||||
|
|||||||
@@ -49,7 +49,9 @@
|
|||||||
form().decimalValid(this, 'partsOverridePct'),
|
form().decimalValid(this, 'partsOverridePct'),
|
||||||
form().required(this, 'partsOverridePct')
|
form().required(this, 'partsOverridePct')
|
||||||
]"
|
]"
|
||||||
:error-messages="form().serverErrors(this, 'partsOverridePct')"
|
:error-messages="
|
||||||
|
form().serverErrors(this, 'partsOverridePct')
|
||||||
|
"
|
||||||
@input="fieldValueChanged('partsOverridePct')"
|
@input="fieldValueChanged('partsOverridePct')"
|
||||||
></gz-percent>
|
></gz-percent>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|||||||
Reference in New Issue
Block a user