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" ]); }