-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patch: update outsanting in old payment schedule entries (#183)
- Loading branch information
1 parent
e26bd46
commit a9e3e8b
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
check_run.patches.patch_payment_schedule # 12/19/23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import frappe | ||
|
||
|
||
def execute(): | ||
pts = frappe.db.sql( | ||
""" | ||
SELECT `tabPayment Schedule`.parent, `tabPayment Schedule`.name | ||
FROM `tabPayment Schedule`, `tabPurchase Invoice` | ||
WHERE `tabPayment Schedule`.outstanding > 0.0 | ||
AND `tabPayment Schedule`.parent = `tabPurchase Invoice`.name | ||
AND `tabPurchase Invoice`.status = 'Paid' | ||
""", | ||
as_dict=True, | ||
) | ||
|
||
for ps in pts: | ||
frappe.db.set_value("Payment Schedule", ps.name, "outstanding", 0.0) |