-
-
Notifications
You must be signed in to change notification settings - Fork 307
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
[FIX] l10n_it_riba: remove account and journal domain #4455
base: 14.0
Are you sure you want to change the base?
Conversation
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.
Review tecnica e funzionale OK per il porting.
PS. Cambierei solo il titolo della PR perchè ero partito con l'idea di togliere le restrizioni del dominio anche per il registro di banca, ma poi non l'ho fatto e non ricordo di preciso il motivo.
Allora non l'ho cambiato, ma visto che questa è ancora aperta si può fare.
Funzionalmente invece lasciando la forzatura di un conto di tipo banca, la PR va bene se l’insoluto viene accreditato e poi stornato dalla banca altrimenti anche il registro dovrebbe essere libero.
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.
LGTM
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.
Grazie della PR!
Ho fatto solo revisione del codice e per me è ok; i commenti qui sotto non sono bloccanti.
@@ -65,7 +65,7 @@ class RibaConfiguration(models.Model): | |||
"account.account", | |||
"A/C Bank Account", | |||
check_company=True, | |||
domain="[('company_id', '=', company_id), ('internal_type', '=', 'liquidity')]", | |||
domain="[('company_id', '=', company_id)]", |
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.
Questo si può togliere: quando il dominio è solo per multicompany, l'attributo check_company
inietta già il dominio corretto (vedi https://github.com/odoo/odoo/blob/d7f13b50148d0a3ec764dc37b0ca3631c9a35483/odoo/fields.py#L2541).
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.
fatto
@@ -79,7 +79,7 @@ class RibaConfiguration(models.Model): | |||
"account.account", | |||
"Past Due Bills Account", | |||
check_company=True, | |||
domain="[('company_id', '=', company_id), ('internal_type', '=', 'receivable')]", | |||
domain="[('company_id', '=', company_id)]", |
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.
Anche questo si può togliere, vedi l'altro commento sul codice simile.
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.
fatto, grazie
Dato che si tratta della v.14.0 sarebbe meglio modificare la descrizione del commit e della PR come già indicato qui. |
Non l'avevo notato, puoi chiarire con una review se per te è una modifica da fare necessaria per il merge o meno? |
Direi di si, è lo stessa situazione indicata qui e poi corretta. Nella v. 14.0 il modulo si chiama |
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.
@sergiocorato puoi risolvere i commenti in pending così poi riusciamo a chiudere la issue grazie. |
a750e4b
to
9352cdf
Compare
9352cdf
to
23477c4
Compare
Ho rinominato il commit, se non c'era altro. |
No description provided.