Merge pull request #32551 from codezart/subscription-plan-fix-months
fix: number of months subscription plan
This commit is contained in:
commit
2a50a0ce69
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
|
|
||||||
import frappe
|
import frappe
|
||||||
|
from dateutil import relativedelta
|
||||||
from frappe import _
|
from frappe import _
|
||||||
from frappe.model.document import Document
|
from frappe.model.document import Document
|
||||||
from frappe.utils import date_diff, flt, get_first_day, get_last_day, getdate
|
from frappe.utils import date_diff, flt, get_first_day, get_last_day, getdate
|
||||||
@ -49,7 +50,7 @@ def get_plan_rate(
|
|||||||
start_date = getdate(start_date)
|
start_date = getdate(start_date)
|
||||||
end_date = getdate(end_date)
|
end_date = getdate(end_date)
|
||||||
|
|
||||||
no_of_months = (end_date.year - start_date.year) * 12 + (end_date.month - start_date.month) + 1
|
no_of_months = relativedelta.relativedelta(end_date, start_date).months + 1
|
||||||
cost = plan.cost * no_of_months
|
cost = plan.cost * no_of_months
|
||||||
|
|
||||||
# Adjust cost if start or end date is not month start or end
|
# Adjust cost if start or end date is not month start or end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user