Skip to content

Commit

Permalink
Merge pull request #2602 from resilient-tech/mergify/bp/version-15-ho…
Browse files Browse the repository at this point in the history
…tfix/pr-2599

fix: fiscal year start-end date in GST Balance (backport #2599)
  • Loading branch information
vorasmit authored Sep 9, 2024
2 parents f94bfa3 + cd9ae19 commit 9f1bb2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions india_compliance/gst_india/report/gst_balance/gst_balance.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ frappe.query_reports["GST Balance"] = {
fieldname: "from_date",
label: __("From Date"),
fieldtype: "Date",
default: frappe.defaults.get_user_default("year_start_date"),
default: india_compliance.last_month_start(),
},
{
fieldname: "to_date",
label: __("To Date"),
fieldtype: "Date",
default: frappe.defaults.get_user_default("year_end_date"),
default: india_compliance.last_month_end(),
},
{
fieldname: "show_summary",
Expand Down

0 comments on commit 9f1bb2a

Please sign in to comment.