fix: check_credit_limit on_update_after_submit of Sales Order

(cherry picked from commit 17452b7693)
This commit is contained in:
Nihantra C. Patel
2024-02-09 15:18:45 +05:30
committed by Mergify
parent 96703fb34d
commit 3112fca087

View File

@@ -362,6 +362,9 @@ class SalesOrder(SellingController):
def on_update(self):
pass
def on_update_after_submit(self):
self.check_credit_limit()
def before_update_after_submit(self):
self.validate_po()
self.validate_drop_ship()