Merge branch 'develop' into employee-leave-balance-summary
This commit is contained in:
commit
40dbb63042
@ -633,3 +633,4 @@ erpnext.patches.v12_0.add_default_dashboards
|
|||||||
erpnext.patches.v12_0.remove_bank_remittance_custom_fields
|
erpnext.patches.v12_0.remove_bank_remittance_custom_fields
|
||||||
erpnext.patches.v12_0.generate_leave_ledger_entries
|
erpnext.patches.v12_0.generate_leave_ledger_entries
|
||||||
erpnext.patches.v12_0.move_credit_limit_to_customer_credit_limit
|
erpnext.patches.v12_0.move_credit_limit_to_customer_credit_limit
|
||||||
|
erpnext.patches.v12_0.add_variant_of_in_item_attribute_table
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
frappe.db.sql('''
|
frappe.db.sql('''
|
||||||
UPDATE `tabItem Variant Attribute` t1
|
UPDATE `tabItem Variant Attribute` t1
|
||||||
INNER JOIN `tabItem` t2 ON t2.name = t1.parent
|
INNER JOIN `tabItem` t2 ON t2.name = t1.parent
|
||||||
SET t1.variant_of = t2.variant_of
|
SET t1.variant_of = t2.variant_of
|
||||||
''')
|
''')
|
||||||
|
|||||||
@ -163,15 +163,14 @@ class Gstr1Report(object):
|
|||||||
if not b2c_limit:
|
if not b2c_limit:
|
||||||
frappe.throw(_("Please set B2C Limit in GST Settings."))
|
frappe.throw(_("Please set B2C Limit in GST Settings."))
|
||||||
|
|
||||||
if self.filters.get("type_of_business") == "B2C Large" and customers:
|
if self.filters.get("type_of_business") == "B2C Large":
|
||||||
conditions += """ and SUBSTR(place_of_supply, 1, 2) != SUBSTR(company_gstin, 1, 2)
|
conditions += """ and SUBSTR(place_of_supply, 1, 2) != SUBSTR(company_gstin, 1, 2)
|
||||||
and grand_total > {0} and is_return != 1 and gst_category ='Unregistered' """.\
|
and grand_total > {0} and is_return != 1 and gst_category ='Unregistered' """.format(flt(b2c_limit))
|
||||||
format(flt(b2c_limit), ", ".join([frappe.db.escape(c.name) for c in customers]))
|
|
||||||
elif self.filters.get("type_of_business") == "B2C Small" and customers:
|
elif self.filters.get("type_of_business") == "B2C Small":
|
||||||
conditions += """ and (
|
conditions += """ and (
|
||||||
SUBSTR(place_of_supply, 1, 2) = SUBSTR(company_gstin, 1, 2)
|
SUBSTR(place_of_supply, 1, 2) = SUBSTR(company_gstin, 1, 2)
|
||||||
or grand_total <= {0}) and is_return != 1 and gst_category ='Unregistered' """.\
|
or grand_total <= {0}) and is_return != 1 and gst_category ='Unregistered' """.format(flt(b2c_limit))
|
||||||
format(flt(b2c_limit), ", ".join([frappe.db.escape(c.name) for c in customers]))
|
|
||||||
|
|
||||||
elif self.filters.get("type_of_business") == "CDNR":
|
elif self.filters.get("type_of_business") == "CDNR":
|
||||||
conditions += """ and is_return = 1 """
|
conditions += """ and is_return = 1 """
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user