refactor: making currency mandatory for subcscription plans
This commit is contained in:
parent
6b5fa2c673
commit
19975dcb7b
@ -41,7 +41,8 @@
|
|||||||
"fieldname": "currency",
|
"fieldname": "currency",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"label": "Currency",
|
"label": "Currency",
|
||||||
"options": "Currency"
|
"options": "Currency",
|
||||||
|
"reqd": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_3",
|
"fieldname": "column_break_3",
|
||||||
@ -148,10 +149,11 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2021-12-10 15:24:15.794477",
|
"modified": "2024-01-14 17:59:34.687977",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Accounts",
|
"module": "Accounts",
|
||||||
"name": "Subscription Plan",
|
"name": "Subscription Plan",
|
||||||
|
"naming_rule": "By fieldname",
|
||||||
"owner": "Administrator",
|
"owner": "Administrator",
|
||||||
"permissions": [
|
"permissions": [
|
||||||
{
|
{
|
||||||
@ -193,5 +195,6 @@
|
|||||||
],
|
],
|
||||||
"sort_field": "modified",
|
"sort_field": "modified",
|
||||||
"sort_order": "DESC",
|
"sort_order": "DESC",
|
||||||
|
"states": [],
|
||||||
"track_changes": 1
|
"track_changes": 1
|
||||||
}
|
}
|
@ -24,7 +24,7 @@ class SubscriptionPlan(Document):
|
|||||||
billing_interval_count: DF.Int
|
billing_interval_count: DF.Int
|
||||||
cost: DF.Currency
|
cost: DF.Currency
|
||||||
cost_center: DF.Link | None
|
cost_center: DF.Link | None
|
||||||
currency: DF.Link | None
|
currency: DF.Link
|
||||||
item: DF.Link
|
item: DF.Link
|
||||||
payment_gateway: DF.Link | None
|
payment_gateway: DF.Link | None
|
||||||
plan_name: DF.Data
|
plan_name: DF.Data
|
||||||
|
Loading…
x
Reference in New Issue
Block a user