This commit is contained in:
@@ -906,7 +906,6 @@ BUILD 8.0.0-beta.0.14 CHANGES OF NOTE
|
|||||||
now ensures non ops api routes are disabled will return validation error, so user can do nothing until server open again then continue working
|
now ensures non ops api routes are disabled will return validation error, so user can do nothing until server open again then continue working
|
||||||
non ops users can not login during ops only state.
|
non ops users can not login during ops only state.
|
||||||
Ops users can do ops things during ops state but no business object stuff even if they ahve the role as that's controlled in each api route individually
|
Ops users can do ops things during ops state but no business object stuff even if they ahve the role as that's controlled in each api route individually
|
||||||
- Changed Material date picker to show adjacent months days
|
|
||||||
- work order item parts, removed serials from the table so it only displays in the edit form as during documentation realized it's eating up huge screen real estate
|
- work order item parts, removed serials from the table so it only displays in the edit form as during documentation realized it's eating up huge screen real estate
|
||||||
- Work order item labor, removed the service details from the Table so it only displays in the edit form as it's eating up a large amount of UI space unnecessarily.
|
- Work order item labor, removed the service details from the Table so it only displays in the edit form as it's eating up a large amount of UI space unnecessarily.
|
||||||
- Work order item travel, removed the service details from the Table so it only displays in the edit form as it's eating up a large amount of UI space unnecessarily.
|
- Work order item travel, removed the service details from the Table so it only displays in the edit form as it's eating up a large amount of UI space unnecessarily.
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
<v-date-picker
|
<v-date-picker
|
||||||
:value="dateValue"
|
:value="dateValue"
|
||||||
:locale="languageName"
|
:locale="languageName"
|
||||||
show-adjacent-months
|
|
||||||
@input="updateDateValue"
|
@input="updateDateValue"
|
||||||
>
|
>
|
||||||
<v-btn text color="primary" @click="$emit('input', null)">{{
|
<v-btn text color="primary" @click="$emit('input', null)">{{
|
||||||
|
|||||||
@@ -21,7 +21,6 @@
|
|||||||
<v-date-picker
|
<v-date-picker
|
||||||
:value="dateValue"
|
:value="dateValue"
|
||||||
:locale="languageName"
|
:locale="languageName"
|
||||||
show-adjacent-months
|
|
||||||
@input="updateDateValue"
|
@input="updateDateValue"
|
||||||
>
|
>
|
||||||
<v-btn text color="primary" @click="$emit('input', null)">{{
|
<v-btn text color="primary" @click="$emit('input', null)">{{
|
||||||
|
|||||||
@@ -915,13 +915,13 @@ export default {
|
|||||||
},
|
},
|
||||||
canAddOutsideService: function() {
|
canAddOutsideService: function() {
|
||||||
return (
|
return (
|
||||||
this.form().showMe(this, "WorkOrderItemOutsideServiceList") &&
|
this.form().showMe(this, "OutsideServiceList") &&
|
||||||
!this.value.userIsRestrictedType
|
!this.value.userIsRestrictedType
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
showOutsideServices: function() {
|
showOutsideServices: function() {
|
||||||
return (
|
return (
|
||||||
this.form().showMe(this, "WorkOrderItemOutsideServiceList") &&
|
this.form().showMe(this, "OutsideServiceList") &&
|
||||||
this.value.items[this.activeItemIndex].outsideServices.length > 0 &&
|
this.value.items[this.activeItemIndex].outsideServices.length > 0 &&
|
||||||
!this.value.userIsRestrictedType
|
!this.value.userIsRestrictedType
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -913,13 +913,13 @@ export default {
|
|||||||
},
|
},
|
||||||
canAddOutsideService: function() {
|
canAddOutsideService: function() {
|
||||||
return (
|
return (
|
||||||
this.form().showMe(this, "WorkOrderItemOutsideServiceList") &&
|
this.form().showMe(this, "OutsideServiceList") &&
|
||||||
!this.value.userIsRestrictedType
|
!this.value.userIsRestrictedType
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
showOutsideServices: function() {
|
showOutsideServices: function() {
|
||||||
return (
|
return (
|
||||||
this.form().showMe(this, "WorkOrderItemOutsideServiceList") &&
|
this.form().showMe(this, "OutsideServiceList") &&
|
||||||
this.value.items[this.activeItemIndex].outsideServices.length > 0 &&
|
this.value.items[this.activeItemIndex].outsideServices.length > 0 &&
|
||||||
!this.value.userIsRestrictedType
|
!this.value.userIsRestrictedType
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -588,7 +588,7 @@ export default {
|
|||||||
value: "quantity"
|
value: "quantity"
|
||||||
});
|
});
|
||||||
|
|
||||||
//todo: property indicatingh if this woitem has *any* suggested quantities and removed it if not
|
//todo: property indicatingh if this woitem has *any* suggested quantities and removed it if not
|
||||||
if (this.form().showMe(this, "WorkOrderItemPartSuggestedQuantity")) {
|
if (this.form().showMe(this, "WorkOrderItemPartSuggestedQuantity")) {
|
||||||
headers.push({
|
headers.push({
|
||||||
text: this.$ay.t("WorkOrderItemPartSuggestedQuantity"),
|
text: this.$ay.t("WorkOrderItemPartSuggestedQuantity"),
|
||||||
@@ -621,8 +621,7 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//not sure about this one, removed it for now
|
||||||
//not sure about this one, removed it for now
|
|
||||||
// if (this.form().showMe(this, "PurchaseOrderItemSerialNumbers")) {
|
// if (this.form().showMe(this, "PurchaseOrderItemSerialNumbers")) {
|
||||||
// headers.push({
|
// headers.push({
|
||||||
// text: this.$ay.t("PurchaseOrderItemSerialNumbers"),
|
// text: this.$ay.t("PurchaseOrderItemSerialNumbers"),
|
||||||
|
|||||||
@@ -1023,13 +1023,13 @@ export default {
|
|||||||
},
|
},
|
||||||
canAddOutsideService: function() {
|
canAddOutsideService: function() {
|
||||||
return (
|
return (
|
||||||
this.form().showMe(this, "WorkOrderItemOutsideServiceList") &&
|
this.form().showMe(this, "OutsideServiceList") &&
|
||||||
!this.value.userIsRestrictedType
|
!this.value.userIsRestrictedType
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
showOutsideServices: function() {
|
showOutsideServices: function() {
|
||||||
return (
|
return (
|
||||||
this.form().showMe(this, "WorkOrderItemOutsideServiceList") &&
|
this.form().showMe(this, "OutsideServiceList") &&
|
||||||
this.value.items[this.activeItemIndex].outsideServices.length > 0 &&
|
this.value.items[this.activeItemIndex].outsideServices.length > 0 &&
|
||||||
!this.value.userIsRestrictedType
|
!this.value.userIsRestrictedType
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user