-
-
Notifications
You must be signed in to change notification settings - Fork 334
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
[18.0][MIG] helpdesk_mgmt #664
base: 18.0
Are you sure you want to change the base?
Conversation
73b86d5
to
8d73099
Compare
@JasminSForgeFlow test are failing, you might need to have a look. |
in the log I can't find the error statement, do you have access to the full log? |
8d73099
to
dfe7b1f
Compare
After changes, tests are passing but still job is failing don't know why |
Please check CI and include latest 17.0 changes, including #693 |
I wish if @JasminSForgeFlow add the updates and fixes too from #676 that I made and append my commits to the ones here for migration. Better for us to agree on one single PR to work on and get it merged successfully, isn't it 🤍? |
The first PR has precedence as gentleness, but if there is no response in the coming days, we close it and take yours. |
@pedrobaeza |
dfe7b1f
to
05ebab6
Compare
Added, Thanks |
Added your commit, thanks |
There's also #676 claiming that "which needed to update the images, kanban card content, and kanban menu content" |
👍 /ocabot migration helpdesk_mgmt |
Yes, please @JasminSForgeFlow include all the missing commits. |
Bring 15.0 ticket list & form views shown in portal mode in line with those defined in the "project" module to display tasks. While most elements remain the same, this cset also adds: * List: group-by & search filters. * Form: close date, assigned user, attachments.
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: helpdesk-15.0/helpdesk-15.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-15-0/helpdesk-15-0-helpdesk_mgmt/
Currently translated at 90.7% (207 of 228 strings) Translation: helpdesk-15.0/helpdesk-15.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-15-0/helpdesk-15-0-helpdesk_mgmt/fr/
on tickets submitted from the portal. Rely on `plaintext2html`, same as Odoo in its controller for message threads (`/odoo15/addons/portal/controllers/mail.py`). Existing portal test adapted to check this.
Currently translated at 100.0% (254 of 254 strings) Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/sk/
Currently translated at 100.0% (254 of 254 strings) Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/sk/
Currently translated at 100.0% (254 of 254 strings) Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/it/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/
Currently translated at 99.2% (254 of 256 strings) Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/it/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/
Currently translated at 100.0% (255 of 255 strings) Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/it/
Currently translated at 100.0% (255 of 255 strings) Translation: helpdesk-17.0/helpdesk-17.0-helpdesk_mgmt Translate-URL: https://translation.odoo-community.org/projects/helpdesk-17-0/helpdesk-17-0-helpdesk_mgmt/it/
05ebab6
to
49748e3
Compare
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.
As stated in the migration guide “You can replace the call to translate a string () with self.env._ for getting some performance improvement in some cases._” there should be changes in this regard.
<field | ||
name="domain_force" | ||
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> |
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.
<field | |
name="domain_force" | |
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> | |
<field name="domain_force">[('company_id', 'in', company_ids + [False])]</field> |
<field | ||
name="domain_force" | ||
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> |
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.
<field | |
name="domain_force" | |
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> | |
<field name="domain_force">[('company_id', 'in', company_ids + [False])]</field> |
<field | ||
name="domain_force" | ||
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> |
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.
<field | |
name="domain_force" | |
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> | |
<field name="domain_force">[('company_id', 'in', company_ids + [False])]</field> |
<field | ||
name="domain_force" | ||
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> |
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.
<field | |
name="domain_force" | |
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> | |
<field name="domain_force">[('company_id', 'in', company_ids + [False])]</field> |
<field | ||
name="domain_force" | ||
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> |
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.
<field | |
name="domain_force" | |
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> | |
<field name="domain_force">[('company_id', 'in', company_ids + [False])]</field> |
<field | ||
name="domain_force" | ||
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> |
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.
<field | |
name="domain_force" | |
>['|',('company_id','=',False),('company_id', 'in', company_ids)]</field> | |
<field name="domain_force">[('company_id', 'in', company_ids + [False])]</field> |
</div> | ||
<group name="main"> | ||
<group name="main_left"> | ||
<field name="sequence" /> |
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.
<field name="sequence" /> |
IMO this field is not required.
49748e3
to
70b7f07
Compare
All things attended. |
70b7f07
to
8d7d09e
Compare
Standard Migration
Adapt OWL for JS
@ForgeFlow