-
Notifications
You must be signed in to change notification settings - Fork 81
[IMP] accounting_firm: add features for AML, ID and CSAM #1206
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
base: 19.0
Are you sure you want to change the base?
Conversation
c59dee0 to
67b2b6e
Compare
67b2b6e to
0d5f42e
Compare
242ac8e to
49ba33b
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.
Good!
You'll need to rebase (error with cloc will disappear) and solve the conflict.
There is still an issue with runbot with a date field.
| <field name="model_id" ref="base.model_res_partner"/> | ||
| <field name="state">code</field> | ||
| <field name="code"><![CDATA[ | ||
| for contact in model.search([('x_id_expiration_date', '!=', False), ('x_id_expiration_date', '<=', datetime.datetime.today().date() + dateutil.relativedelta.relativedelta(days=7))]): |
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.
maybe a detailed but you changed this in your last push. Was it intended?
| for contact in model.search([('x_id_expiration_date', '!=', False), ('x_id_expiration_date', '<=', datetime.datetime.today().date() + dateutil.relativedelta.relativedelta(days=7))]): | |
| for contact in model.search([('x_id_expiration_date', '!=', False), ('x_id_expiration_date', '<', datetime.datetime.today().date() + dateutil.relativedelta.relativedelta(days=7))]): |
| for partner in records: | ||
| partner.message_post( |
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.
Isn't there another type of server action for generic actions like sending an email?

No description provided.