From 92534a858d9f9e42a5718c31d042a1a56bf01a3b Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 24 Jan 2023 00:29:45 +0000 Subject: [PATCH] --- src/views/biz-purchase.vue | 39 ++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/src/views/biz-purchase.vue b/src/views/biz-purchase.vue index 906ed64..f4a7054 100644 --- a/src/views/biz-purchase.vue +++ b/src/views/biz-purchase.vue @@ -113,6 +113,20 @@ @input="fieldValueChanged('cancelDate')" > + +
+ + {{ obj.vendorNotificationId }} + $sockiCommentDollar + +
+
- - - @@ -250,6 +249,7 @@ export default { renewNoticeSent: false, quantity: 1, processedDate: null, + vendorNotificationId: null, wiki: null, tags: [] }, @@ -356,6 +356,12 @@ export default { window.$gz.eventBus.$off("menu-click", clickHandler); }, methods: { + openVendorNotification: function() { + window.$gz.eventBus.$emit("openobject", { + type: window.$gz.type.VendorNotification, + id: this.obj.vendorNotificationId + }); + }, canSave: function() { return this.formState.valid && this.formState.dirty; }, @@ -667,7 +673,8 @@ async function fetchTranslatedText() { "PurchaseRenewNoticeSent", "PurchaseQuantity", "PurchaseProcessed", - "PurchaseVendorNotificationId" + "PurchaseVendorNotificationId", + "VendorNotification" ]); }