mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
Fix: Billing & subscription
This commit is contained in:
41
client/src/common/subscriptionModels.js
Normal file
41
client/src/common/subscriptionModels.js
Normal file
@@ -0,0 +1,41 @@
|
||||
export const plans = [
|
||||
{
|
||||
name: 'basic',
|
||||
description: [
|
||||
'Sales/purchases module.',
|
||||
'Expense module.',
|
||||
'Inventory module.',
|
||||
'Unlimited status pages.',
|
||||
'Unlimited status pages.',
|
||||
],
|
||||
price: '1200',
|
||||
slug: 'free',
|
||||
currency: 'LYD',
|
||||
},
|
||||
{
|
||||
name: 'pro',
|
||||
description: [
|
||||
'Sales/purchases module.',
|
||||
'Expense module.',
|
||||
'Inventory module.',
|
||||
'Unlimited status pages.',
|
||||
'Unlimited status pages.',
|
||||
],
|
||||
price: '1200',
|
||||
slug: 'free',
|
||||
currency: 'LYD',
|
||||
},
|
||||
];
|
||||
|
||||
export const paymentmethod = [
|
||||
{
|
||||
period: 'monthly',
|
||||
price: '1200',
|
||||
currency: 'LYD',
|
||||
},
|
||||
{
|
||||
period: 'yearly',
|
||||
price: '1200',
|
||||
currency: 'LYD',
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user