\r\n \r\n 0\"\r\n >\r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Download.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Download.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Download.vue?vue&type=template&id=5888a77f&\"\nimport script from \"./Download.vue?vue&type=script&lang=js&\"\nexport * from \"./Download.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import _get from 'lodash/get'\r\nimport { vendorInvoice } from '@/services/Vendors/VendorInvoices/store'\r\nimport kms from '@/services/kms'\r\nimport { parseDate } from '@/utilities/Date/parse'\r\nimport Download from '../components/Download'\r\nimport { base64toBlob, showPdf } from '@/services/blobutility'\r\nimport { notifyProblem, notifyMessage, notifyWarning } from '@/services/notify'\r\n\r\nexport const methods = {\r\n determineRows: function(list) {\r\n if (!Array.isArray(list)) {\r\n return\r\n }\r\n\r\n var rows = list.map(entry => {\r\n var dateFormat = 'LL'\r\n\r\n const invoiceNumber = _get(entry, 'invoiceNumber', '')\r\n const payeeInformation = _get(entry, 'payeeInformation', '')\r\n const postingDate = parseDate(_get(entry, 'postingDate', null), dateFormat)\r\n\r\n return {\r\n invoiceNumber: invoiceNumber,\r\n payeeInformation: payeeInformation,\r\n postingDate: postingDate,\r\n document: {\r\n component: Download,\r\n props: {\r\n documentID: _get(entry, ['invoiceDocumentID'], 0),\r\n apInvoiceID: _get(entry, 'apInvoiceID', 0),\r\n downloadPdf: apInvoiceID => {\r\n this.downloadPdf(apInvoiceID)\r\n }\r\n }\r\n }\r\n }\r\n })\r\n\r\n this.rows = rows\r\n },\r\n\r\n async getPayeeID() {\r\n await vendorInvoice\r\n .dispatch('getPayeeById', {\r\n vendorID: this.vendorID\r\n })\r\n .then(({ result }) => {\r\n if (result) {\r\n this.payeeID = result.apPayeeID\r\n if (this.isDebug == true) console.debug('getPayeeById=' + this.payeeID)\r\n }\r\n })\r\n },\r\n\r\n async loadVendorInvoices() {\r\n if (this.isDebug == true) console.debug('in loadVendorInvoices()...')\r\n\r\n const loadingComponent = this.$buefy.loading.open({\r\n container: null\r\n })\r\n\r\n await this.getPayeeID()\r\n\r\n await vendorInvoice\r\n .dispatch('getVendorInvoiceList', {\r\n payeeID: this.payeeID\r\n })\r\n .then(({ list }) => {\r\n this.determineRows(list)\r\n })\r\n\r\n loadingComponent.close()\r\n },\r\n\r\n reload() {\r\n this.loading = true\r\n\r\n this.vendorID = this.$route.params.id || 0\r\n\r\n if (this.isDebug == true) console.debug('params vendorID=' + this.vendorID)\r\n\r\n this.rows = []\r\n\r\n this.loadVendorInvoices()\r\n\r\n this.loading = false\r\n },\r\n\r\n async downloadPdf(apInvoiceID) {\r\n if (this.isDebug == true) console.debug('downloadPdf...')\r\n\r\n if (!apInvoiceID || apInvoiceID == undefined) {\r\n notifyProblem('The vendor invoice is invalid for the download.')\r\n }\r\n\r\n try {\r\n const params = {\r\n apInvoiceID: apInvoiceID,\r\n asBase64: true\r\n }\r\n\r\n const path = `/AccountsPayable/APInvoice/GetInvoiceFile`\r\n const returned = await kms.get(path, {\r\n params\r\n })\r\n\r\n if (this.isDebug == true)\r\n console.debug(\r\n 'path base64 path=' +\r\n path +\r\n ' - params' +\r\n JSON.stringify(params) +\r\n ' - returned=' +\r\n JSON.stringify(returned)\r\n )\r\n if (returned && returned != undefined) {\r\n if (this.isDebug == true) console.debug('base64pdf........................' + returned)\r\n const contentType = 'application/pdf'\r\n const blob = base64toBlob(returned, contentType)\r\n showPdf(blob)\r\n notifyMessage(`Successfully downloaded the vendor invoice.`)\r\n return\r\n }\r\n } catch (e) {\r\n if (this.isDebug == true) console.debug(e)\r\n notifyWarning('There was a problem downloading the vendor invoice.')\r\n }\r\n }\r\n}\r\n","import moment from 'moment'\r\n\r\nexport const data = () => ({\r\n isDebug: true,\r\n loading: false,\r\n vendorID: 0,\r\n payeeID: 0,\r\n apInvoiceID: 0,\r\n formatDateFn: function(value) {\r\n return value != null ? moment(value, 'YYYY/MM/DD HH:mm:ss').format('MM-DD-YYYY') : ''\r\n },\r\n\r\n filters: {\r\n show: false\r\n },\r\n\r\n region: {},\r\n\r\n rows: [],\r\n\r\n columns: [\r\n {\r\n field: 'invoiceNumber',\r\n label: 'Invoice #',\r\n aria: 'Invoice #',\r\n width: '15%',\r\n sortable: true,\r\n searchable: true\r\n },\r\n {\r\n field: 'payeeInfo',\r\n label: 'Payee Info',\r\n aria: 'Payee Info',\r\n width: '60%',\r\n sortable: true,\r\n searchable: true\r\n },\r\n {\r\n field: 'postingDate',\r\n label: 'Posting Date',\r\n aria: 'Posting Date',\r\n width: '15%',\r\n sortable: true,\r\n searchable: true\r\n }\r\n ],\r\n\r\n styles: {\r\n filterButton: {\r\n float: 'right',\r\n marginTop: '4px'\r\n }\r\n }\r\n})\r\n","