Skip to content

Commit

Permalink
fix: correct log name and pass a parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanket322 committed Feb 6, 2025
1 parent 0ea3e51 commit 9f6994a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ def get_books_gstr1_data(self, filters, aggregate=False):
return books_data

from_date, to_date = get_gstr_1_from_and_to_date(
filters.month_or_quarter, filters.year
filters.month_or_quarter, filters.year, filters.filing_preference
)

_filters = frappe._dict(
Expand Down
2 changes: 1 addition & 1 deletion india_compliance/gst_india/utils/gstin_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def get_current_fy():

def get_logs_for_quarter(gstin, period):
quarter = get_financial_quarter(cint(period[:2]))
start_month = quarter * 3 + 1
start_month = ((quarter - 1) * 3 + 4) % 12
year = period[2:]

logs = []
Expand Down

0 comments on commit 9f6994a

Please sign in to comment.