forked from adempiere/adempiere-vue
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Report empty with regenerate. (PanJiaChen#2991)
- Loading branch information
1 parent
b4d44e9
commit 78a50e9
Showing
16 changed files
with
179 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,29 @@ | ||
// ADempiere-Vue (Frontend) for ADempiere ERP & CRM Smart Business Solution | ||
// Copyright (C) 2023-Present E.R.P. Consultores y Asociados, C.A. | ||
// Contributor(s): Elsio Sanchez [email protected] https://github.com/elsiosanchez | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
/** | ||
* ADempiere-Vue (Frontend) for ADempiere ERP & CRM Smart Business Solution | ||
* Copyright (C) 2018-Present E.R.P. Consultores y Asociados, C.A. www.erpya.com | ||
* Contributor(s): Elsio Sanchez [email protected] https://github.com/elsiosanchez | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https:www.gnu.org/licenses/>. | ||
*/ | ||
|
||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
import router from '@/router' | ||
import lang from '@/lang' | ||
|
||
// Constants | ||
import { | ||
REPORT_VIEWER_NAME | ||
} from '@/utils/ADempiere/dictionary/report/index.js' | ||
|
||
// API Request Methods | ||
import { | ||
copyOrder, | ||
|
@@ -40,12 +49,11 @@ import { | |
processCashClosing, | ||
listCashSummaryMovements | ||
} from '@/api/ADempiere/form/VPOS' | ||
// // Utils and Helper Methods | ||
|
||
// Utils and Helper Methods | ||
import { isEmptyValue } from '@/utils/ADempiere/valueUtils.js' | ||
import { showMessage } from '@/utils/ADempiere/notification' | ||
import { buildLinkHref } from '@/utils/ADempiere/resource.js' | ||
// Constants | ||
import { REPORT_VIEWER_NAME } from '@/utils/ADempiere/constants/report' | ||
|
||
const options = { | ||
showOptions: false, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* ADempiere-Vue (Frontend) for ADempiere ERP & CRM Smart Business Solution | ||
* Copyright (C) 2017-Present E.R.P. Consultores y Asociados, C.A. www.erpya.com | ||
* Copyright (C) 2018-Present E.R.P. Consultores y Asociados, C.A. www.erpya.com | ||
* Contributor(s): Elsio Sanchez [email protected] https://github.com/elsiosanchez | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -9,7 +9,7 @@ | |
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
|
@@ -19,7 +19,12 @@ | |
import language from '@/lang' | ||
import router from '@/router' | ||
|
||
// api request methods | ||
// Constants | ||
import { | ||
REPORT_VIEWER_NAME | ||
} from '@/utils/ADempiere/dictionary/report' | ||
|
||
// API Request Methods | ||
import { | ||
createOrder, | ||
getOrder, | ||
|
@@ -30,14 +35,12 @@ import { | |
printTicketPreviwer | ||
} from '@/api/ADempiere/form/point-of-sales.js' | ||
|
||
// utils and helper methods | ||
// Utils and Helper Methods | ||
import { isEmptyValue, convertValuesToSendListOrders } from '@/utils/ADempiere/valueUtils.js' | ||
import { extractPagingToken, generatePageToken } from '@/utils/ADempiere/dataUtils' | ||
import { showMessage } from '@/utils/ADempiere/notification.js' | ||
import { buildLinkHref } from '@/utils/ADempiere/resource.js' | ||
|
||
// Constants | ||
import { REPORT_VIEWER_NAME } from '@/utils/ADempiere/constants/report' | ||
/** | ||
* Order Actions | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.