Skip to content

Commit

Permalink
Merge pull request #2599 from Nihantra-Patel/fix_start_end_date_gst_r…
Browse files Browse the repository at this point in the history
…eport

fix: fiscal year start-end date in GST Balance
  • Loading branch information
vorasmit authored Sep 9, 2024
2 parents b0a66cd + 65e48f2 commit b9657e5
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 b9657e5

Please sign in to comment.