feat(Warehouses|Branches): empty status text.

This commit is contained in:
a.bouhuolia
2022-03-21 18:31:31 +02:00
parent 90c77d80eb
commit 701c32debd
9 changed files with 57 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import { Form } from 'formik';
import { Intent, Callout, Classes } from '@blueprintjs/core';
import { Classes } from '@blueprintjs/core';
import BranchActivateFormFloatingActions from './BranchActivateFormFloatingActions';
/**
@@ -10,10 +10,20 @@ export default function BranchActivateFormContent() {
return (
<Form>
<div className={Classes.DIALOG_BODY}>
<Callout icon={null} intent={Intent.PRIMARY}>
Aute esse eiusmod dolore ipsum dolor sint qui proident pariatur
proident fugiat ea ad aliquip.
</Callout>
<p class="paragraph">
Once you enable <strong>Multiply Branches</strong>, you will not be able to disable it.
However, you can delete the branch or mark it inactive.
</p>
<ul class="paragraph list">
<li>
The current organization will be considered as the Head Office or
Primary Branch.
</li>
<li>
All accounts transactions will be considered as the primary office.
</li>
</ul>
</div>
<BranchActivateFormFloatingActions />
</Form>