This commit is contained in:
2021-03-17 19:19:49 +00:00
parent fe8dcc779f
commit fb1af2e270
2 changed files with 24 additions and 15 deletions

View File

@@ -62,10 +62,7 @@ todo: v8 migrate additions
PO item to show part Name field as well but be hideable in customize form?
number is always present, name optional?
PO item not showing taxaviz and taxbviz
PO item Receive button confusing as it receives all, maybe change text to receive all or append the quantity ordered at the end of the text of the button, like Receive 3
Can part inventory list also show on order and on order committed?
Part inventory list what is the deal with the description field and going to the history? Can it be more like the transaction list and have both that and source or...?? Not sure what's up there?
**Part inventory list view will NOT show all parts if previously selected to view the actual part inventory for a single part. I have listed how to recreate:
@@ -958,11 +955,14 @@ build 105
Default warehouse try to enter a tag bombs with error
PartInventory data table errors out when click on column selector
PO form Hide serial field until an ID is set (i.e. don't show 0)
PO FOrm serial field read only unless superuser
PO Form serial field read only unless superuser
PO item Receive button confusing as it receives all, change text to receive all
PO item table to optionally show part Name field and show hide via customize form
PO item not showing taxaviz and taxbviz
- not changed
Tag extension should have tag picker instead of empty field in cases where you are picking from existing tags
** Not doing this, went in to look and it would not work with the system in place. Tag picker control is designed for multiple tags,
** It would not work with the system in place. Tag picker control is designed for multiple tags,
tags extension system is designed to replace / remove a single tag at a time by design, so wouldn't save any typing by user anyway as would be restricted to one tag
and would need extensive changes to working code to implement
Tag extension to report results of operation? i.e. how many tags deleted etc

View File

@@ -679,7 +679,7 @@
@click="receive(obj.items[editPoItemIndex])"
class="ml-4"
><v-icon left> $ayiBoxOpen </v-icon
>{{ $ay.t("Receive") }}</v-btn
>{{ $ay.t("ReceiveAll") }}</v-btn
>
<v-btn
color="blue darken-1"
@@ -727,7 +727,7 @@
text
@click="receive(obj.items[editPoItemIndex])"
><v-icon left> $ayiBoxOpen </v-icon
>{{ $ay.t("Receive") }}</v-btn
>{{ $ay.t("ReceiveAll") }}</v-btn
>
<v-btn
class="mt-8 mb-6"
@@ -1001,6 +1001,14 @@ export default {
value: "partViz"
});
if (vm.form().showMe(vm, "Items.PartName")) {
headers.push({
text: vm.$ay.t("PartName"),
align: "left",
value: "partNameViz"
});
}
if (vm.obj.hasSelectableWarehouses) {
headers.push({
text: vm.$ay.t("PartWarehouse"),
@@ -1061,13 +1069,13 @@ export default {
headers.push({
text: vm.$ay.t("TaxCodeTaxA"),
align: "right",
value: "TaxAViz"
value: "taxAViz"
});
headers.push({
text: vm.$ay.t("TaxCodeTaxB"),
align: "right",
value: "TaxBViz"
value: "taxBViz"
});
}
@@ -1142,6 +1150,7 @@ export default {
),
vendorPartNumber: x.vendorPartNumber,
partViz: x.partViz,
partNameViz: x.partNameViz,
warehouseViz: x.warehouseViz,
partRequestedByViz: x.partRequestedByViz,
workorderItemPartRequestViz: x.workorderItemPartRequestViz,
@@ -1151,13 +1160,13 @@ export default {
vm.languageName,
vm.currencyName
),
TaxAViz: window.$gz.locale.currencyLocalized(
x.TaxAViz,
taxAViz: window.$gz.locale.currencyLocalized(
x.taxAViz,
vm.languageName,
vm.currencyName
),
TaxBViz: window.$gz.locale.currencyLocalized(
x.TaxBViz,
taxBViz: window.$gz.locale.currencyLocalized(
x.taxBViz,
vm.languageName,
vm.currencyName
),
@@ -1791,6 +1800,7 @@ async function fetchTranslatedText(vm) {
"PurchaseOrderItemQuantityOrdered",
"PurchaseOrderItemQuantityReceived",
"Part",
"PartName",
"PartWarehouse",
"TaxCode",
"PurchaseOrderItemVendorPartNumber",
@@ -1806,7 +1816,6 @@ async function fetchTranslatedText(vm) {
"PurchaseOrderReceiptItemQuantityReceivedErrorInvalid",
"PurchaseOrderItemSerialNumbers",
"ReceiveAll",
"Receive",
"JobCompleted",
"ConfirmUpdatePartCost",
"PurchaseOrderUIRestockList",