This commit is contained in:
2021-07-07 21:06:33 +00:00
parent 46d1249c14
commit 40aee881a3
2 changed files with 36 additions and 10 deletions

View File

@@ -422,27 +422,56 @@ todo: many biz objects are not using new PUT methodology
CURRENTLY DOING: CURRENTLY DOING:
todo: joyce requested fields to add to reports viz fields todo: attempting to open report from report data list gives error that reportDataOptions are not defined
WORKORDER Error - Name:Error, Message:ay-report-edit::created - missing report data options cannot proceed
workorderitempart - part name in addition to part number - added as "PartNameViz" filename: http://localhost:8080/js/ay-report-edit.js
Workorder header - Customer scheduled user alert notes - added as "CustomerTechNotesViz" field for report lineNumber: 2509
info: created hook (Promise/async)
todo: expose report NOTES field in report data list
todo: report editor feature:
expose aytype field with a picklist so user can change report type
this way they can make a copy of a report then alter it for a different type then save it
so a customer report can be repurposed as a headoffice report (for example)
without having to resort to manually editing report file template and re-importing
todo: joyce requested fields to add to reports viz fields
PO PO
Customer address and contact information (for PO where a customer has been selected to be shipped to) Customer address and contact information (for PO where a customer has been selected to be shipped to)
TODO 2 (all 2's): V7 features on wo I haven't coded yet TODO 2 (all 2's): V7 features on wo I haven't coded yet
Unit Unit
warranty display static info warranty display static info to show with Unit entry / edit form
Unit's warranty expired Wednesday, July 1, 2009 Unit's warranty expired Wednesday, July 1, 2009
-------------- --------------
Last closed service date: - Last closed service date: - //<--sb clickable
Last closed service workorder: - Last closed service workorder: - //<--sb clickable
Purchased Date: 2005-06-01 12:00 AM Purchased Date: 2005-06-01 12:00 AM
Receipt Number: 46543545 Receipt Number: 46543545
Part Part
Generate unit from selected part (already a v7 feature, didn't even realize) Generate unit from selected part (already a v7 feature, didn't even realize)
UPC select by UPC (just confirm this) UPC select by UPC (just confirm this)
todo 1: Implemente Tech scheduleable user notes in workorder form ALERT area
right now it only shows from customers "Alert notes" field
Got missed I guess
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
name
upc
description
Unit
Model
Manufacturer
Description
todo 2: Implement "Show All" feature for related objects 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 also add a Show all workorders for Tech User's in their menu so they can see their own workorders at a glance

View File

@@ -894,7 +894,6 @@ export default {
return; return;
} }
} }
//get id from number then push open //get id from number then push open
let res = await window.$gz.api.get( let res = await window.$gz.api.get(
"workorder/id-from-number/" + this.copyItemWoNumber "workorder/id-from-number/" + this.copyItemWoNumber
@@ -906,7 +905,6 @@ export default {
); );
return; return;
} }
this.$router.push({ this.$router.push({
name: "workorder-edit", name: "workorder-edit",
params: { params: {
@@ -915,7 +913,6 @@ export default {
} }
}); });
} }
this.copyItemDialog = false; this.copyItemDialog = false;
}, },
newItem() { newItem() {