Skip to content

Commit 1a18898

Browse files
committed
[DEL] account_payment_pro: Deprecate double-validation
1 parent d1703f3 commit 1a18898

File tree

4 files changed

+2
-72
lines changed

4 files changed

+2
-72
lines changed

account_payment_pro/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
33
{
44
"name": "Account Payment Super Power",
5-
"version": "17.0.1.9.0",
5+
"version": "17.0.2.0.0",
66
"category": "Payment",
77
"website": "www.adhoc.com.ar",
88
"author": "ADHOC SA",

account_payment_pro/models/account_payment.py

-24
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ class AccountPayment(models.Model):
111111
help="Difference between 'To Pay Amount' and 'Payment Total'"
112112
)
113113
write_off_available = fields.Boolean(compute='_compute_write_off_available')
114-
is_approved = fields.Boolean(string="Approved", tracking=True, copy=False,)
115114
use_payment_pro = fields.Boolean(related='company_id.use_payment_pro')
116115

117116
@api.depends('company_id')
@@ -120,31 +119,12 @@ def _compute_write_off_available(self):
120119
rec.write_off_available = bool(
121120
rec.env['account.write_off.type'].search([('company_id', '=', rec.company_id.id)], limit=1))
122121

123-
def _check_to_pay_lines_account(self):
124-
""" TODO ver si esto tmb lo llevamos a la UI y lo mostramos como un warning.
125-
tmb podemos dar mas info al usuario en el error """
126-
for rec in self:
127-
accounts = rec.to_pay_move_line_ids.mapped('account_id')
128-
if len(accounts) > 1:
129-
raise ValidationError(_('To Pay Lines must be of the same account!'))
130-
131-
def action_approve(self):
132-
# chequeamos lineas a pagar antes de confirmar pago para evitar idas y vueltas de validacion
133-
self._check_to_pay_lines_account()
134-
self.filtered(lambda x: x.state == 'draft').is_approved = True
135-
136-
def action_unapprove(self):
137-
# chequeamos lineas a pagar antes de confirmar pago para evitar idas y vueltas de validacion
138-
self._check_to_pay_lines_account()
139-
self.filtered(lambda x: x.state == 'draft').is_approved = False
140-
141122
def action_draft(self):
142123
# Seteamos posted_before en true para que nos permita pasar a borrador el pago y poder realizar cambio sobre el mismo
143124
# Nos salteamos la siguente validacion
144125
# https://github.com/odoo/odoo/blob/b6b90636938ae961c339807ea893cabdede9f549/addons/account/models/account_move.py#L2474
145126
if self.company_id.use_payment_pro:
146127
self.posted_before = False
147-
self.is_approved = False
148128
super().action_draft()
149129

150130
@api.model
@@ -153,8 +133,6 @@ def _get_confimed_blocked_field(self):
153133
'withholdable_advanced_amount', 'company_id', 'to_pay_amount']
154134

155135
def write(self, vals):
156-
if self.filtered('is_approved') and set(self) & set(self._get_confimed_blocked_field()):
157-
raise UserError(_('Your are trying to modify a protected field on an approved payment. Set it back to edit if you want to make this modification.'))
158136
for rec in self:
159137
if rec.company_id.use_payment_pro or ('company_id' in vals and rec.env['res.company'].browse(vals['company_id']).use_payment_pro):
160138
# Lo siguiente lo evaluamos para evitar la validacion de odoo de
@@ -521,8 +499,6 @@ def check_to_pay_lines(self):
521499
def action_post(self):
522500
res = super().action_post()
523501
for rec in self:
524-
if (rec.is_approved and rec.payment_difference):
525-
raise ValidationError(_('To Pay Amount and Payment Amount must be equal!'))
526502
counterpart_aml = rec.mapped('line_ids').filtered(
527503
lambda r: not r.reconciled and r.account_id.account_type in self._get_valid_payment_account_types())
528504
if counterpart_aml and rec.to_pay_move_line_ids:

account_payment_pro/security/payment_security.xml

-6
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@
99
<field name="category_id" ref="base.module_category_hidden"/>
1010
<field name="name">Allow pay now on vendor invoices</field>
1111
</record>
12-
<record id="account_confirm_payment" model="res.groups">
13-
<field name="name">Confirm payments (only if double validation is enabled)</field>
14-
<field name="implied_ids" eval="[(4, ref('account.group_account_invoice'))]"/>
15-
<field name="users" eval="[(4, ref('base.user_root'))]"/>
16-
<field name="category_id" ref="base.module_category_usability"/>
17-
</record>
1812
<record id="account_write_off_type_company_rule" model="ir.rule">
1913
<field name="name">Write Off Type multi-company</field>
2014
<field name="model_id" ref="model_account_write_off_type"/>

account_payment_pro/views/account_payment_view.xml

+1-41
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,6 @@
1111
</field>
1212
</record>
1313

14-
<record id="view_account_supplier_payment_tree" model="ir.ui.view">
15-
<field name="name">account.payment.tree</field>
16-
<field name="model">account.payment</field>
17-
<field name="inherit_id" ref="account.view_account_supplier_payment_tree"/>
18-
<field name="arch" type="xml">
19-
<header>
20-
<button name="action_approve" string="Approve" groups="account_payment_pro.account_confirm_payment" type="object"/>
21-
</header>
22-
<field name="state" position="after">
23-
<field name="is_approved" optional="hide"/>
24-
</field>
25-
</field>
26-
</record>
27-
28-
<record id="view_account_payment_search" model="ir.ui.view">
29-
<field name="name">account.payment.search</field>
30-
<field name="model">account.payment</field>
31-
<field name="inherit_id" ref="account.view_account_payment_search"/>
32-
<field name="arch" type="xml">
33-
<filter name="date" position='after'>
34-
<separator/>
35-
<filter string="Approved" name="is_approved" domain="[('is_approved', '=', True), ('state', '=', 'draft')]"/>
36-
<filter string="Not approved" name="not_is_approved" domain="[('is_approved', '=', False), ('state', '=', 'draft')]"/>
37-
</filter>
38-
</field>
39-
</record>
40-
4114
<record id="view_account_payment_form" model="ir.ui.view">
4215
<field name="name">account.payment.form</field>
4316
<field name="model">account.payment</field>
@@ -50,12 +23,11 @@
5023
<form>
5124
<field name="commercial_partner_id" invisible="True"/>
5225
<field name="write_off_available" invisible="True"/>
53-
<field name="is_approved" invisible="True"/>
5426
<field name="use_payment_pro" invisible="True"/>
5527
</form>
5628

5729
<button name="action_post" position="after">
58-
<button name="action_post_and_new" string="Confirm and New" type="object" invisible="is_internal_transfer or state != 'draft' or payment_difference &lt;= 0.0 or not is_approved"/>
30+
<button name="action_post_and_new" string="Confirm and New" type="object" invisible="is_internal_transfer or state != 'draft' or payment_difference &lt;= 0.0"/>
5931
</button>
6032

6133
<xpath expr="//field[@name='partner_id'][1]" position="attributes">
@@ -70,18 +42,6 @@
7042
<field name="company_id" options="{'no_create': True}" domain="[('id', 'in', allowed_company_ids)]" groups="base.group_multi_company" readonly="state != 'draft' or context.get('default_company_id')"/>
7143
</field>
7244

73-
<xpath expr="//div[@name='button_box']" position="after">
74-
<span class="badge rounded-pill text-bg-success float-end fs-6" invisible="not is_approved">
75-
<i class="fa fa-fw fa-check" aria-label="Approved" title="Approved" role="img"/>
76-
<span class="d-none d-md-inline">Approved</span>
77-
</span>
78-
</xpath>
79-
80-
<button name="action_post" position="before">
81-
<button name="action_approve" class="oe_highlight" string="Approve" groups="account_payment_pro.account_confirm_payment" invisible="state != 'draft'" type="object"/>
82-
<button name="action_unapprove" string="Back to Edit" invisible="state != 'draft' or not is_approved" type="object"/>
83-
</button>
84-
8545
<!-- movemos amount a la columna 2 para que quede todo lo relativo al metodo de pago junto -->
8646
<group name="group2">
8747
<label for="amount" position="move"/>

0 commit comments

Comments
 (0)