This commit is contained in:
@@ -21,7 +21,8 @@ Aug
|
|||||||
notification of multiple however the fuck that works
|
notification of multiple however the fuck that works
|
||||||
test notification
|
test notification
|
||||||
|
|
||||||
|
Cases from Joyce
|
||||||
|
prevent login during migration except for superuser
|
||||||
|
|
||||||
po workorderitempart request selection dialog missing stubbed out as todo where you select part requests that are open to order
|
po workorderitempart request selection dialog missing stubbed out as todo where you select part requests that are open to order
|
||||||
Update all dependencies here
|
Update all dependencies here
|
||||||
|
|||||||
@@ -80,6 +80,22 @@
|
|||||||
></gz-decimal>
|
></gz-decimal>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col v-if="showIntegerDecValue" cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-text-field
|
||||||
|
v-model="obj.decValue"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:clearable="!formState.readOnly"
|
||||||
|
@click:clear="fieldValueChanged('decValue')"
|
||||||
|
:label="$ay.t('UiFieldDataTypesInteger')"
|
||||||
|
ref="decValue"
|
||||||
|
data-cy="decValue"
|
||||||
|
:rules="[form().integerValid(this, 'decValue')]"
|
||||||
|
:error-messages="form().serverErrors(this, 'decValue')"
|
||||||
|
@input="fieldValueChanged('decValue')"
|
||||||
|
type="number"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
<v-col v-if="showAgeValue" cols="12" sm="6" lg="4" xl="3">
|
<v-col v-if="showAgeValue" cols="12" sm="6" lg="4" xl="3">
|
||||||
<gz-duration-picker
|
<gz-duration-picker
|
||||||
v-model="obj.ageValue"
|
v-model="obj.ageValue"
|
||||||
@@ -379,8 +395,14 @@ export default {
|
|||||||
return this.obj.eventType == 9;
|
return this.obj.eventType == 9;
|
||||||
},
|
},
|
||||||
showDecValue() {
|
showDecValue() {
|
||||||
|
//WorkorderTotalExceedsThreshold = 23 The "Andy"
|
||||||
return this.obj.eventType == 23; // || this.obj.eventType == 11; //service bank threshold
|
return this.obj.eventType == 23; // || this.obj.eventType == 11; //service bank threshold
|
||||||
},
|
},
|
||||||
|
showIntegerDecValue() {
|
||||||
|
//UnitMeterReadingMultipleExceeded=26,
|
||||||
|
return this.obj.eventType == 26;
|
||||||
|
},
|
||||||
|
|
||||||
showAyaType() {
|
showAyaType() {
|
||||||
switch (this.obj.eventType) {
|
switch (this.obj.eventType) {
|
||||||
case 1:
|
case 1:
|
||||||
@@ -762,7 +784,8 @@ async function fetchTranslatedText(vm) {
|
|||||||
"Duration",
|
"Duration",
|
||||||
"TaggedWith",
|
"TaggedWith",
|
||||||
"WorkOrderStatus",
|
"WorkOrderStatus",
|
||||||
"Total"
|
"Total",
|
||||||
|
"UiFieldDataTypesInteger"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user