This commit is contained in:
@@ -142,6 +142,7 @@ CURRENTLY DOING: PartByWarehouseInventory NEXT UP: Controller routes, DataList
|
|||||||
todo: datalist for raw inventory
|
todo: datalist for raw inventory
|
||||||
EDIT form for partinventory item openobjecthyandler should open up to event log history of entry, not entry form since it is not editable anyway
|
EDIT form for partinventory item openobjecthyandler should open up to event log history of entry, not entry form since it is not editable anyway
|
||||||
todo: find a way to do a stock picking list format and expose in UI
|
todo: find a way to do a stock picking list format and expose in UI
|
||||||
|
I'm thinking some kind of built in view based on a query that I can treat like a tble object with my existing datalist code
|
||||||
|
|
||||||
UseInventory global setting, what to do about that
|
UseInventory global setting, what to do about that
|
||||||
my initial thought is get rid of it and just default to always using inventory but inventory can't go negative so it would need to
|
my initial thought is get rid of it and just default to always using inventory but inventory can't go negative so it would need to
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ export default {
|
|||||||
"LoanUnitList",
|
"LoanUnitList",
|
||||||
"PartList",
|
"PartList",
|
||||||
"PartAssemblyList",
|
"PartAssemblyList",
|
||||||
"PartByWarehouseInventoryList",
|
"PartInventoryList",
|
||||||
"WorkOrderItemPartRequestList",
|
"WorkOrderItemPartRequestList",
|
||||||
"InventoryPurchaseOrders",
|
"InventoryPurchaseOrders",
|
||||||
"InventoryPurchaseOrderReceipts",
|
"InventoryPurchaseOrderReceipts",
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
:showSelect="rights.read"
|
:showSelect="rights.read"
|
||||||
:reload="reload"
|
:reload="reload"
|
||||||
v-on:selection-change="handleSelected"
|
v-on:selection-change="handleSelected"
|
||||||
data-cy="projectsTable"
|
data-cy="partInventoryTable"
|
||||||
>
|
>
|
||||||
</gz-data-table>
|
</gz-data-table>
|
||||||
</div>
|
</div>
|
||||||
@@ -62,12 +62,12 @@ async function clickHandler(menuItem) {
|
|||||||
let m = window.$gz.menu.parseMenuItem(menuItem);
|
let m = window.$gz.menu.parseMenuItem(menuItem);
|
||||||
if (m.owner == FORM_KEY && !m.disabled) {
|
if (m.owner == FORM_KEY && !m.disabled) {
|
||||||
switch (m.key) {
|
switch (m.key) {
|
||||||
case "new":
|
// case "new":
|
||||||
m.vm.$router.push({
|
// m.vm.$router.push({
|
||||||
name: "project-edit",
|
// name: "project-edit",
|
||||||
params: { recordid: 0 }
|
// params: { recordid: 0 }
|
||||||
});
|
// });
|
||||||
break;
|
// break;
|
||||||
case "extensions":
|
case "extensions":
|
||||||
let res = await m.vm.$refs.extensions.open(
|
let res = await m.vm.$refs.extensions.open(
|
||||||
m.vm.$refs.gzdatatable.getDataListSelection(
|
m.vm.$refs.gzdatatable.getDataListSelection(
|
||||||
|
|||||||
Reference in New Issue
Block a user