This commit is contained in:
@@ -87,7 +87,7 @@
|
|||||||
lg="4"
|
lg="4"
|
||||||
xl="3"
|
xl="3"
|
||||||
>
|
>
|
||||||
<v-text-field
|
<!-- <v-text-field
|
||||||
v-model="obj.unit"
|
v-model="obj.unit"
|
||||||
:readonly="formState.readOnly"
|
:readonly="formState.readOnly"
|
||||||
:label="$ay.t('RateUnitChargeDescriptionID')"
|
:label="$ay.t('RateUnitChargeDescriptionID')"
|
||||||
@@ -95,7 +95,18 @@
|
|||||||
data-cy="unit"
|
data-cy="unit"
|
||||||
:error-messages="form().serverErrors(this, 'unit')"
|
:error-messages="form().serverErrors(this, 'unit')"
|
||||||
@input="fieldValueChanged('unit')"
|
@input="fieldValueChanged('unit')"
|
||||||
></v-text-field>
|
></v-text-field> -->
|
||||||
|
|
||||||
|
<v-combobox
|
||||||
|
v-model="obj.unit"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$ay.t('RateUnitChargeDescriptionID')"
|
||||||
|
ref="unit"
|
||||||
|
data-cy="unit"
|
||||||
|
:error-messages="form().serverErrors(this, 'unit')"
|
||||||
|
@input="fieldValueChanged('unit')"
|
||||||
|
:items="rateUnits"
|
||||||
|
></v-combobox>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col
|
<v-col
|
||||||
@@ -296,7 +307,8 @@ export default {
|
|||||||
serverError: {}
|
serverError: {}
|
||||||
},
|
},
|
||||||
rights: window.$gz.role.defaultRightsObject(),
|
rights: window.$gz.role.defaultRightsObject(),
|
||||||
ayaType: window.$gz.type.ServiceRate
|
ayaType: window.$gz.type.ServiceRate,
|
||||||
|
rateUnits: ["each", "hour"]
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
//WATCHERS
|
//WATCHERS
|
||||||
|
|||||||
Reference in New Issue
Block a user