This commit is contained in:
@@ -423,40 +423,27 @@ todo: many biz objects are not using new PUT methodology
|
||||
|
||||
|
||||
CURRENTLY DOING: Two items below for Joyce, then do a build and release
|
||||
|
||||
|
||||
todo 1: Implemente Tech scheduleable user notes in workorder form ALERT area
|
||||
right now it only shows from customers "Alert notes" field
|
||||
todo: modify alert notes control to accept color or alert level like message box dialogs
|
||||
TODO: make the alert notes red with alert notes label
|
||||
todo: make the tech notes black with technotes label above them
|
||||
|
||||
from v7 docs:
|
||||
Schedulable User Notes
|
||||
If you have standing instructions for scheduled users that perform service for this client, you may wish to enter them here rather than re-entering in every service workorder for this client.
|
||||
The Scheduled User Notes will display along with the client name, address and contact information in the service workorder entry screen and is selectable within Detailed format report templates.
|
||||
Note that if you are viewing the Schedulable User Notes the label Schedulable User Notes will display on the button, as well as the drop down will show a checkmark next to Schedulable User Notes.
|
||||
|
||||
Popup Notes
|
||||
Popup notes automatically “popup” whenever a service workorder for this client is opened whether a new service workorder, or viewing an existing service workorder.
|
||||
A example of use would be the accounting department wants to indicate to dispatch when taking any service requests to remind the client about outstanding payments. As the popup will popup when the dispatch creates a new service workorder, this reminds the dispatch right then to talk with the client about this.
|
||||
|
||||
|
||||
|
||||
|
||||
todo 1: Add some hideable fields to wo form data tables to further identify parts and units beyond the picklist description
|
||||
AND also these should be *viz fields available for reporting as well
|
||||
part
|
||||
woitempart
|
||||
name
|
||||
upc
|
||||
description
|
||||
Unit
|
||||
woitemUnit
|
||||
Model
|
||||
Manufacturer
|
||||
Description
|
||||
|
||||
todo: add new sample report templates emailed by Joyce
|
||||
|
||||
|
||||
---release----
|
||||
|
||||
|
||||
|
||||
|
||||
todo 2: Implement "Show All" feature for related objects
|
||||
also add a Show all workorders for Tech User's in their menu so they can see their own workorders at a glance
|
||||
|
||||
@@ -1253,6 +1240,8 @@ BUILD 114
|
||||
Note: v7 "move" woitem feature is intentionally not implemented
|
||||
user can replicate by copy and then delete source woitem
|
||||
|
||||
- WorkOrder form implemented sched user tech notes from customer record as an alert at top
|
||||
re-styled the top alert boxes in work order form so they now show the customer / contract "popup" alert notes in red and the tech notes are just regular dark primary text
|
||||
- WorkOrderItemScheduledUser convert to labor implemented (was v7 feature)
|
||||
- workorderitemlabor "Append tasks" implemented (new feature, customer requested)
|
||||
- WorkorderItemUnit Unit warranty and recent workorder info widget added (was v7 feature)
|
||||
|
||||
@@ -879,6 +879,14 @@ export default {
|
||||
});
|
||||
}
|
||||
|
||||
if (this.form().showMe(this, "PartName")) {
|
||||
headers.push({
|
||||
text: this.$ay.t("PartName"),
|
||||
align: "left",
|
||||
value: "partNameViz"
|
||||
});
|
||||
}
|
||||
|
||||
if (this.form().showMe(this, "PartUPC")) {
|
||||
headers.push({
|
||||
text: this.$ay.t("PartUPC"),
|
||||
@@ -995,6 +1003,7 @@ export default {
|
||||
x.quantity,
|
||||
this.pvm.languageName
|
||||
),
|
||||
partNameViz: x.partNameViz,
|
||||
upcViz: x.upcViz,
|
||||
description: x.description,
|
||||
serials: window.$gz.util.truncateString(
|
||||
|
||||
@@ -2015,7 +2015,6 @@ async function fetchTranslatedText(vm) {
|
||||
"WorkOrderItemScheduledUserUserID",
|
||||
"WorkOrderItemScheduledUserServiceRateID",
|
||||
"Sequence",
|
||||
|
||||
"WorkOrderItemCustom1",
|
||||
"WorkOrderItemCustom2",
|
||||
"WorkOrderItemCustom3",
|
||||
@@ -2145,6 +2144,7 @@ async function fetchTranslatedText(vm) {
|
||||
"WorkOrderItemOutsideServiceDateETA",
|
||||
"WorkOrderItemOutsideServiceDateReturned",
|
||||
"TaxCode",
|
||||
"PartName",
|
||||
"PartUPC",
|
||||
"TaskGroup",
|
||||
"TaskGroupList",
|
||||
|
||||
Reference in New Issue
Block a user