Compare commits

...

8 Commits

Author SHA1 Message Date
Ahmed Bouhuolia
a56f560036 Merge pull request #627 from bigcapitalhq/fix-style-tweeks-in-onboarding-page
fix: Style tweaks in onboarding page
2024-08-25 13:20:39 +02:00
Ahmed Bouhuolia
0fb886936c Merge pull request #626 from bigcapitalhq/disable-sms-service
fix: Disable sms service until Twilo integration
2024-08-25 13:20:14 +02:00
Ahmed Bouhuolia
670136916f fix: Style tweaks in onboarding page 2024-08-25 13:19:16 +02:00
Ahmed Bouhuolia
768297f137 fix: Disable sms service until Twilo integration 2024-08-25 13:07:07 +02:00
Ahmed Bouhuolia
ef505a0a62 Merge pull request #625 from bigcapitalhq/manual-journal-number-prefix
fix: Add prefix J-00001 to manual journals increments
2024-08-25 13:05:52 +02:00
Ahmed Bouhuolia
42d40620ec fix: add prefix J-00001 to manual journals increments 2024-08-25 13:05:28 +02:00
Ahmed Bouhuolia
959ef7a691 Merge branch 'listen-payment-webhooks' into develop 2024-08-24 21:52:04 +02:00
Ahmed Bouhuolia
e44ebb700a Merge pull request #623 from bigcapitalhq/listen-payment-webhooks
fix: Listen to payment webhooks
2024-08-24 21:49:36 +02:00
5 changed files with 20 additions and 19 deletions

View File

@@ -15,6 +15,7 @@ export default class SeedSettings extends TenantSeeder {
// Manual journals settings.
{ group: 'manual_journals', key: 'next_number', value: '00001' },
{ group: 'manual_journals', key: 'number_prefix', value: 'J-' },
{ group: 'manual_journals', key: 'auto_increment', value: true },
// Sale invoices settings.

View File

@@ -54,9 +54,9 @@ export default [
disabled: false,
href: '/preferences/items',
},
{
text: <T id={'sms_integration.label'} />,
disabled: false,
href: '/preferences/sms-message',
},
// {
// text: <T id={'sms_integration.label'} />,
// disabled: false,
// href: '/preferences/sms-message',
// },
];

View File

@@ -2,9 +2,9 @@
width: 100%;
margin-bottom: 2rem;
background: transparent;
color: rgba(255, 255, 255, 0.75);
border: 1px solid rgb(255, 255, 255, 0.3);
padding: 10px;
color: rgba(255, 255, 255, 0.6);
border: 1px solid rgb(255, 255, 255, 0.2);
padding: 8px;
font-size: 13px;
font-weight: 500;
border-radius: 5px;
@@ -12,11 +12,11 @@
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
&:hover {
color: rgba(255, 255, 255, 0.95);
border: 1px solid rgb(255, 255, 255, 0.6);
color: rgba(255, 255, 255, 0.7);
border: 1px solid rgb(255, 255, 255, 0.3);
}
}
.demoButtonLabel{
color: rgba(255, 255, 255, 0.75);
color: rgba(255, 255, 255, 0.5);
font-size: 13px;
}

View File

@@ -6,7 +6,7 @@ import Roles from '../containers/Preferences/Users/Roles/RolesForm/RolesFormPage
import Accountant from '@/containers/Preferences/Accountant/Accountant';
import Currencies from '@/containers/Preferences/Currencies/Currencies';
import Item from '@/containers/Preferences/Item';
import SMSIntegration from '../containers/Preferences/SMSIntegration';
// import SMSIntegration from '../containers/Preferences/SMSIntegration';
import DefaultRoute from '../containers/Preferences/DefaultRoute';
import Warehouses from '../containers/Preferences/Warehouses';
import Branches from '../containers/Preferences/Branches';
@@ -85,11 +85,11 @@ export default [
component: Item,
exact: true,
},
{
path: `${BASE_URL}/sms-message`,
component: SMSIntegration,
exact: true,
},
// {
// path: `${BASE_URL}/sms-message`,
// component: SMSIntegration,
// exact: true,
// },
{
path: `${BASE_URL}/billing`,
component: BillingPage,

View File

@@ -72,10 +72,10 @@
&__text {
font-size: 18px;
opacity: 0.75;
opacity: 0.55;
margin-bottom: 10px;
font-weight: 200;
}
}
&__organization {
font-size: 16px;