@@ -111,7 +111,6 @@ class AccountPayment(models.Model):
111
111
help = "Difference between 'To Pay Amount' and 'Payment Total'"
112
112
)
113
113
write_off_available = fields .Boolean (compute = '_compute_write_off_available' )
114
- is_approved = fields .Boolean (string = "Approved" , tracking = True , copy = False ,)
115
114
use_payment_pro = fields .Boolean (related = 'company_id.use_payment_pro' )
116
115
117
116
@api .depends ('company_id' )
@@ -120,31 +119,12 @@ def _compute_write_off_available(self):
120
119
rec .write_off_available = bool (
121
120
rec .env ['account.write_off.type' ].search ([('company_id' , '=' , rec .company_id .id )], limit = 1 ))
122
121
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
-
141
122
def action_draft (self ):
142
123
# Seteamos posted_before en true para que nos permita pasar a borrador el pago y poder realizar cambio sobre el mismo
143
124
# Nos salteamos la siguente validacion
144
125
# https://github.com/odoo/odoo/blob/b6b90636938ae961c339807ea893cabdede9f549/addons/account/models/account_move.py#L2474
145
126
if self .company_id .use_payment_pro :
146
127
self .posted_before = False
147
- self .is_approved = False
148
128
super ().action_draft ()
149
129
150
130
@api .model
@@ -153,8 +133,6 @@ def _get_confimed_blocked_field(self):
153
133
'withholdable_advanced_amount' , 'company_id' , 'to_pay_amount' ]
154
134
155
135
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.' ))
158
136
for rec in self :
159
137
if rec .company_id .use_payment_pro or ('company_id' in vals and rec .env ['res.company' ].browse (vals ['company_id' ]).use_payment_pro ):
160
138
# Lo siguiente lo evaluamos para evitar la validacion de odoo de
@@ -521,8 +499,6 @@ def check_to_pay_lines(self):
521
499
def action_post (self ):
522
500
res = super ().action_post ()
523
501
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!' ))
526
502
counterpart_aml = rec .mapped ('line_ids' ).filtered (
527
503
lambda r : not r .reconciled and r .account_id .account_type in self ._get_valid_payment_account_types ())
528
504
if counterpart_aml and rec .to_pay_move_line_ids :
0 commit comments