Skip to Content
Menu
This question has been flagged

Hi All,

I have inherit an action_confirm in sale order module and write the state changed to an Approved and then after just simply shows a warning or alert message without any user restricts.

Below i have shared my code..

@api.multi
def action_confirm(self):
super(SaleOrder, self).action_confirm()
for order in self:
if not order.user_is_manager:
credit_limit = order.partner_id.limit
order_amount = self.amount_total
cal_credit_avail = credit_limit - order_amount

if cal_credit_avail < self.amount_total:

order.write({'state': 'approve'})

message = _('The credit limit of %s the %s Customer') % (self.partner_id.credit_limit, self.partner_id.name)
warning_mess = {'title': _('Credit Limit!'), 'message': message}
            return {'warning': warning_mess}
Avatar
Discard
Related Posts Replies Views Activity
2
May 23
3925
2
Nov 24
477
4
Feb 24
10164
1
Jan 24
369
1
Jun 23
798