@byu-oit/vue-decision-processing-components 8.32.4 → 8.33.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [8.33.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.33.0...v8.33.1) (2023-07-20)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * report viewer needs to handle new/old/packet values for the appService variable, not just booleans ([cac81bc](https://github.com/byu-oit/vue-decision-processing-components/commit/cac81bcf3b379b7466df6118f082ebaa4c7f8a93))
11
+
12
+ ## [8.33.0](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.32.3...v8.33.0) (2023-03-20)
13
+
14
+
15
+ ### Features
16
+
17
+ * Add decision properties from application ([ddee5d6](https://github.com/byu-oit/vue-decision-processing-components/commit/ddee5d6470610c6a1f5a7b706c8ee906d67022bc))
18
+
5
19
  ### [8.32.4](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.32.3...v8.32.4) (2023-03-03)
6
20
 
7
21
  ### [8.32.3](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.32.2...v8.32.3) (2022-12-21)
package/ReportViewer.vue CHANGED
@@ -96,6 +96,14 @@ export default {
96
96
  }
97
97
  },
98
98
  calculatedBaseUrl () {
99
+ if (this.selectedReport.appService === 'new') {
100
+ return this.appBaseUrl + '/proxy/report'
101
+ } else if (this.selectedReport.appService === 'old') {
102
+ return this.appBaseUrl + '/report'
103
+ } else if (this.selectedReport.appService === 'packet') {
104
+ return this.packetBaseUrl + '/report'
105
+ }
106
+
99
107
  let reportUrl = ''
100
108
  if (this.selectedReport.appService) {
101
109
  reportUrl = this.appBaseUrl
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@byu-oit/vue-decision-processing-components",
3
- "version": "8.32.4",
3
+ "version": "8.33.1",
4
4
  "description": "Vue components shared between decision processing systems for the CES schools.",
5
5
  "dependencies": {
6
6
  "@fortawesome/fontawesome-free": "^5.15.4",
7
7
  "@fortawesome/fontawesome-svg-core": "^1.2.36",
8
8
  "@fortawesome/free-regular-svg-icons": "^5.15.4",
9
9
  "@fortawesome/free-solid-svg-icons": "^5.15.4",
10
- "@fortawesome/vue-fontawesome": "^2.0.6",
10
+ "@fortawesome/vue-fontawesome": "^2.0.10",
11
11
  "csv-string": "^4.0.1",
12
12
  "is-iso-date": "0.0.1",
13
13
  "lodash.get": "^4.4.2",
@@ -23,6 +23,9 @@ export const state = {
23
23
  applicationStatus: '',
24
24
  city: '',
25
25
  emailAddress: '',
26
+ decision: '',
27
+ decisionQualifier: '',
28
+ decisionDateTime: '',
26
29
  netId: '',
27
30
  personId: '',
28
31
  phoneNumber: '',
@@ -60,6 +63,9 @@ export const mutations = {
60
63
  state.applicationStatus = application.applicationStatus
61
64
  state.city = application.city
62
65
  state.emailAddress = application.emailAddress
66
+ state.decision = application.decision
67
+ state.decisionQualifier = application.decisionQualifier
68
+ state.decisionDateTime = application.decisionDateTime
63
69
  state.netId = application.netId
64
70
  state.personId = application.personId
65
71
  state.phoneNumber = application.phoneNumber
@@ -81,6 +87,9 @@ export const mutations = {
81
87
  state.applicationStatus = ''
82
88
  state.city = ''
83
89
  state.emailAddress = ''
90
+ state.decision = ''
91
+ state.decisionQualifier = ''
92
+ state.decisionDateTime = ''
84
93
  state.netId = ''
85
94
  state.personId = ''
86
95
  state.phoneNumber = ''