Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Fix: Clean Report Engine Errors (#2571)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricargame authored Aug 12, 2024
1 parent 822700f commit dccb5a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
6 changes: 2 additions & 4 deletions src/views/ADempiere/ReportViewerEngine/dialog/contactSend.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@
</template>
<script>
import store from '@/store'
import { defineComponent, computed, ref } from '@vue/composition-api'
import { defineComponent, ref } from '@vue/composition-api'
import { isEmptyValue } from '@/utils/ADempiere/valueUtils'
export default defineComponent({
name: 'contactSend',
setup() {
const contantSend = computed(() => {
return store.getters.getContactSend
})
const contantSend = ref(store.getters.getContactSend)
const listUserSend = ref([])
function searchUser() {
store.dispatch('ListUser')
Expand Down
6 changes: 2 additions & 4 deletions src/views/ADempiere/ReportViewerEngine/dialog/typeNotify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@
</template>
<script>
import store from '@/store'
import { defineComponent, computed, ref } from '@vue/composition-api'
import { defineComponent, ref } from '@vue/composition-api'
import { isEmptyValue } from '@/utils/ADempiere/valueUtils'
export default defineComponent({
name: 'typeNotify',
setup() {
const notify = computed(() => {
return store.getters.getTypeNotify
})
const notify = ref(store.getters.getTypeNotify)
const listNotify = ref([])
function searchNotify() {
store.dispatch('ListNotifications')
Expand Down
8 changes: 0 additions & 8 deletions src/views/ADempiere/ReportViewerEngine/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,6 @@ export default defineComponent({
})

const reportFormat = getExtensionFromFile(fileName)
console.log({
uuid: reportUuid,
reportType: reportFormat,
reportName: fileName,
tableName: root.$route.params.tableName,
parametersList,
instanceUuid
})
store.dispatch('buildReport', {
uuid: reportUuid,
reportType: reportFormat,
Expand Down

0 comments on commit dccb5a1

Please sign in to comment.