-
Notifications
You must be signed in to change notification settings - Fork 4
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
T0424 FEAT: Add field to the tag to help identify them #7
Conversation
Pre-commit must be executed for the tests to pass. In a terminal, on the repository, run :
Also the tests are failing with this issue: `2023-11-14 07:22:56,655 531 WARNING odoo odoo.fields: Field res.partner.category.tagged_partner_count: unknown parameter 'stored', if this is an actual parameter you may want to override the method _valid_field_parameter on the relevant model in order to allow it 2023-11-14 07:22:57,097 531 INFO odoo odoo.addons.partner_tag_smart_assignation.tests.test_smart_tagger: ====================================================================== |
We are adding some fields to give more information to the tag. The main 3 are the author, the department who use the tag and a description. We add those to all tag and show them in the list view. To add the department we need to add a new dependence the hr base module. We add a new value to the smart part of the tag. This new value give the possibility to give a end date to a tag. We had a cron who archive tag who are older than their valid date.
* added fields * added dropdown and valid_until * T0424 FEAT: Add field to the tag to help identify them We are adding some fields to give more information to the tag. The main 3 are the author, the department who use the tag and a description. We add those to all tag and show them in the list view. To add the department we need to add a new dependence the hr base module. We add a new value to the smart part of the tag. This new value give the possibility to give a end date to a tag. We had a cron who archive tag who are older than their valid date. --------- Co-authored-by: zoro2002 <[email protected]>
We are adding some fields to give more information to the tag. The main 3 are the author, the department who use the tag and a description. We add those to all tag and show them in the list view.
To add the department we need to add a new dependence the hr base module.
We add a new value to the smart part of the tag. This new value give the possibility to give a end date to a tag. We had a cron who archive tag who are older than their valid date.