-
-
Notifications
You must be signed in to change notification settings - Fork 697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MIG][18.0] sale_order_invoicing_queued from 16.0 #1869
Open
acsonefho
wants to merge
35
commits into
OCA:18.0
Choose a base branch
from
acsone:18.0-mig-sale_order_invoicing_queued
base: 18.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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 module allows to enqueue in several jobs the sales orders invoicing process to be executed in paralell on background, that's it's normally done serially and on foreground. Jobs are split following the same criteria as standard Odoo: grouping by order invoicing address and order currency. Installation ============ This module depends on *queue_job* module that is hosted on https://github.com/OCA/queue. Configuration ============= If you want to see queued jobs, you need "Job Queue / Job Queue Manager" permission in your user. Usage ===== * Go to *Sales > Invoicing > Orders to Invoice*. * Select sales orders whose invoicing you want to enqueue. * Click on *Action > Invoice Order*. * Click on "Enqueue Invoicing" button. * On that moment, jobs will be enqueued on foreground, but the control will be returned to you after that. * Having the "Job Queue Manager" permissions, you can go to the sales order, and see the tab "Invoicing Jobs". There a list with all the jobs related to that sales order can be found. Known issues / Roadmap ====================== * This module doesn't take into account any possible modification on grouping criteria, like all the modules that uses `sale_order_action_invoice_create_hook`.
* Standard procedure * README updated * Manifest version updated
* Standard procedure * README updated * Manifest version updated * Adjusted code to v13
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-invoicing-13.0/account-invoicing-13.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-13-0/account-invoicing-13-0-sale_order_invoicing_queued/
Currently translated at 100.0% (7 of 7 strings) Translation: account-invoicing-13.0/account-invoicing-13.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-13-0/account-invoicing-13-0-sale_order_invoicing_queued/zh_CN/
Using the new hook for getting the grouping criteria, now we compatibilize this module with for example sale_order_invoicing_grouping_criteria.
Currently translated at 100.0% (7 of 7 strings) Translation: account-invoicing-13.0/account-invoicing-13.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-13-0/account-invoicing-13-0-sale_order_invoicing_queued/es/
…bility with OCA module The previous group key generator was not properly populated. And also provide compatibility with module sale_order_invoicing_grouping_criteria module.
Order `partner_invoice_id` fields is transferred to `partner_id`, so when seeing grouping keys at order level, we need to remap the grouping key.
Currently translated at 100.0% (10 of 10 strings) Translation: account-invoicing-14.0/account-invoicing-14.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-sale_order_invoicing_queued/it/
Currently translated at 100.0% (10 of 10 strings) Translation: account-invoicing-14.0/account-invoicing-14.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-sale_order_invoicing_queued/it/
Currently translated at 100.0% (10 of 10 strings) Translation: account-invoicing-14.0/account-invoicing-14.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-sale_order_invoicing_queued/it/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-invoicing-14.0/account-invoicing-14.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-sale_order_invoicing_queued/
Currently translated at 100.0% (10 of 10 strings) Translation: account-invoicing-14.0/account-invoicing-14.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-sale_order_invoicing_queued/es/
…e to work as usual
…me due to conflicts in 16.0
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: account-invoicing-16.0/account-invoicing-16.0-sale_order_invoicing_queued Translate-URL: https://translation.odoo-community.org/projects/account-invoicing-16-0/account-invoicing-16-0-sale_order_invoicing_queued/
acsonefho
changed the title
[MIG][18.0] account_invoice_merge from 16.0
[MIG][18.0] sale_order_invoicing_queued from 16.0
Dec 31, 2024
@@ -0,0 +1,6 @@ | |||
This module depends on *queue_job* module that is hosted on |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file can be removed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Migration of
sale_order_invoicing_queued
in 18.0 from 16.0