chore: Update patch

This commit is contained in:
Deepesh Garg 2022-10-28 20:18:55 +05:30
parent fb41bdd700
commit b9d497c61c

View File

@ -1,30 +1,25 @@
import frappe import frappe
def execute(): from erpnext.accounts.utils import get_fiscal_year
frappe.db.sql(
"""
UPDATE
`tabPurchase Invoice Item`
INNER JOIN
`tabPurchase Invoice`
ON
`tabPurchase Invoice`.name = `tabPurchase Invoice Item`.parent
SET
`tabPurchase Invoice Item`.apply_tds = 1
WHERE
`tabPurchase Invoice`.apply_tds = 1
and `tabPurchase Invoice`.docstatus = 1
"""
)
frappe.db.sql(
""" def execute():
UPDATE # Only do for current fiscal year, no need to repost for all years
`tabPurchase Invoice` for company in frappe.get_all("Company"):
SET fiscal_year_details = get_fiscal_year(company=company.name, as_dict=True)
tax_withholding_net_total = net_total,
base_tax_withholding_net_total = base_net_total purchase_invoice = frappe.qb.DocType("Purchase Invoice")
WHERE
apply_tds = 1 and docstatus = 1 frappe.qb.update(purchase_invoice).set(
""" purchase_invoice.tax_withholding_net_total, purchase_invoice.net_total
) ).set(
purchase_invoice.base_tax_withholding_net_total, purchase_invoice.base_net_total
).where(
purchase_invoice.company == company.name
).where(
purchase_invoice.apply_tds == 1
).where(
purchase_invoice.posting_date >= fiscal_year_details.year_start_date
).where(
purchase_invoice.docstatus == 1
).run()