mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
feat: Contact activate & inactivate.
This commit is contained in:
@@ -0,0 +1,67 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { FormattedMessage as T } from 'components';
|
||||||
|
import intl from 'react-intl-universal';
|
||||||
|
import { Intent, Alert } from '@blueprintjs/core';
|
||||||
|
import { AppToaster } from 'components';
|
||||||
|
|
||||||
|
import { useActivateContact } from 'hooks/query';
|
||||||
|
|
||||||
|
import withAlertStoreConnect from 'containers/Alert/withAlertStoreConnect';
|
||||||
|
import withAlertActions from 'containers/Alert/withAlertActions';
|
||||||
|
|
||||||
|
import { compose } from 'utils';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Contact activate alert.
|
||||||
|
*/
|
||||||
|
function ContactActivateAlert({
|
||||||
|
name,
|
||||||
|
|
||||||
|
// #withAlertStoreConnect
|
||||||
|
isOpen,
|
||||||
|
payload: { contactId, service },
|
||||||
|
|
||||||
|
// #withAlertActions
|
||||||
|
closeAlert,
|
||||||
|
}) {
|
||||||
|
const { mutateAsync: activateContact, isLoading } = useActivateContact();
|
||||||
|
|
||||||
|
// Handle activate contact alert cancel.
|
||||||
|
const handleCancelActivateContact = () => {
|
||||||
|
closeAlert(name);
|
||||||
|
};
|
||||||
|
|
||||||
|
// Handle confirm contact activated.
|
||||||
|
const handleConfirmContactActivate = () => {
|
||||||
|
activateContact(contactId)
|
||||||
|
.then(() => {
|
||||||
|
AppToaster.show({
|
||||||
|
message: intl.get('the_contact_has_been_activated_successfully'),
|
||||||
|
intent: Intent.SUCCESS,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch((error) => {})
|
||||||
|
.finally(() => {
|
||||||
|
closeAlert(name);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Alert
|
||||||
|
cancelButtonText={<T id={'cancel'} />}
|
||||||
|
confirmButtonText={<T id={'activate'} />}
|
||||||
|
intent={Intent.WARNING}
|
||||||
|
isOpen={isOpen}
|
||||||
|
onCancel={handleCancelActivateContact}
|
||||||
|
loading={isLoading}
|
||||||
|
onConfirm={handleConfirmContactActivate}
|
||||||
|
>
|
||||||
|
<p>{intl.get('are_sure_to_activate_this_contact')}</p>
|
||||||
|
</Alert>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default compose(
|
||||||
|
withAlertStoreConnect(),
|
||||||
|
withAlertActions,
|
||||||
|
)(ContactActivateAlert);
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { FormattedMessage as T } from 'components';
|
||||||
|
import intl from 'react-intl-universal';
|
||||||
|
import { Intent, Alert } from '@blueprintjs/core';
|
||||||
|
import { AppToaster } from 'components';
|
||||||
|
|
||||||
|
import { useInactivateContact } from 'hooks/query';
|
||||||
|
|
||||||
|
import withAlertStoreConnect from 'containers/Alert/withAlertStoreConnect';
|
||||||
|
import withAlertActions from 'containers/Alert/withAlertActions';
|
||||||
|
|
||||||
|
import { compose } from 'utils';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Contact inactivate alert.
|
||||||
|
*/
|
||||||
|
function ContactInactivateAlert({
|
||||||
|
name,
|
||||||
|
// #withAlertStoreConnect
|
||||||
|
isOpen,
|
||||||
|
payload: { contactId, service },
|
||||||
|
|
||||||
|
// #withAlertActions
|
||||||
|
closeAlert,
|
||||||
|
}) {
|
||||||
|
const { mutateAsync: inactivateContact, isLoading } = useInactivateContact();
|
||||||
|
|
||||||
|
// Handle cancel inactivate alert.
|
||||||
|
const handleCancelInactivateContact = () => {
|
||||||
|
closeAlert(name);
|
||||||
|
};
|
||||||
|
|
||||||
|
// Handle confirm contact Inactive.
|
||||||
|
const handleConfirmContactInactive = () => {
|
||||||
|
inactivateContact(contactId)
|
||||||
|
.then(() => {
|
||||||
|
AppToaster.show({
|
||||||
|
message: intl.get('the_contact_has_been_inactivated_successfully'),
|
||||||
|
intent: Intent.SUCCESS,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch((error) => {})
|
||||||
|
.finally(() => {
|
||||||
|
closeAlert(name);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Alert
|
||||||
|
cancelButtonText={<T id={'cancel'} />}
|
||||||
|
confirmButtonText={<T id={'inactivate'} />}
|
||||||
|
intent={Intent.WARNING}
|
||||||
|
isOpen={isOpen}
|
||||||
|
onCancel={handleCancelInactivateContact}
|
||||||
|
onConfirm={handleConfirmContactInactive}
|
||||||
|
loading={isLoading}
|
||||||
|
>
|
||||||
|
<p>
|
||||||
|
{intl.get('are_sure_to_inactive_this_contact', {
|
||||||
|
name: service,
|
||||||
|
})}
|
||||||
|
</p>
|
||||||
|
</Alert>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default compose(
|
||||||
|
withAlertStoreConnect(),
|
||||||
|
withAlertActions,
|
||||||
|
)(ContactInactivateAlert);
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import CustomerDeleteAlert from 'containers/Alerts/Customers/CustomerDeleteAlert';
|
import CustomerDeleteAlert from 'containers/Alerts/Customers/CustomerDeleteAlert';
|
||||||
// import CustomerBulkDeleteAlert from 'containers/Alerts/Customers/CustomerBulkDeleteAlert';
|
// import CustomerBulkDeleteAlert from 'containers/Alerts/Customers/CustomerBulkDeleteAlert';
|
||||||
|
import ContactActivateAlert from '../../containers/Alerts/Contacts/ContactActivateAlert';
|
||||||
|
import ContactInactivateAlert from '../../containers/Alerts/Contacts/ContactInactivateAlert';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Customers alert.
|
* Customers alert.
|
||||||
@@ -9,6 +11,8 @@ export default function ItemsAlerts() {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<CustomerDeleteAlert name={'customer-delete'} />
|
<CustomerDeleteAlert name={'customer-delete'} />
|
||||||
|
<ContactActivateAlert name={'contact-activate'} />
|
||||||
|
<ContactInactivateAlert name={'contact-inactivate'} />
|
||||||
{/* <CustomerBulkDeleteAlert name={'customers-bulk-delete'} /> */}
|
{/* <CustomerBulkDeleteAlert name={'customers-bulk-delete'} /> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -72,6 +72,19 @@ function CustomersTable({
|
|||||||
openDialog('contact-duplicate', { contactId: id });
|
openDialog('contact-duplicate', { contactId: id });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Handle cancel/confirm inactive.
|
||||||
|
const handleInactiveCustomer = ({ id, contact_service }) => {
|
||||||
|
openAlert('contact-inactivate', {
|
||||||
|
contactId: id,
|
||||||
|
service: contact_service,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// Handle cancel/confirm activate.
|
||||||
|
const handleActivateCustomer = ({ id, contact_service }) => {
|
||||||
|
openAlert('contact-activate', { contactId: id, service: contact_service });
|
||||||
|
};
|
||||||
|
|
||||||
if (isEmptyStatus) {
|
if (isEmptyStatus) {
|
||||||
return <CustomersEmptyStatus />;
|
return <CustomersEmptyStatus />;
|
||||||
}
|
}
|
||||||
@@ -102,6 +115,8 @@ function CustomersTable({
|
|||||||
onDelete: handleCustomerDelete,
|
onDelete: handleCustomerDelete,
|
||||||
onEdit: handleCustomerEdit,
|
onEdit: handleCustomerEdit,
|
||||||
onDuplicate: handleContactDuplicate,
|
onDuplicate: handleContactDuplicate,
|
||||||
|
onInactivate: handleInactiveCustomer,
|
||||||
|
onActivate: handleActivateCustomer,
|
||||||
}}
|
}}
|
||||||
ContextMenu={ActionsMenu}
|
ContextMenu={ActionsMenu}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
Position,
|
Position,
|
||||||
Intent,
|
Intent,
|
||||||
} from '@blueprintjs/core';
|
} from '@blueprintjs/core';
|
||||||
import { Icon, Money } from 'components';
|
import { Icon, Money, If } from 'components';
|
||||||
import { safeCallback } from 'utils';
|
import { safeCallback } from 'utils';
|
||||||
import { firstLettersArgs } from 'utils';
|
import { firstLettersArgs } from 'utils';
|
||||||
import intl from 'react-intl-universal';
|
import intl from 'react-intl-universal';
|
||||||
@@ -18,10 +18,8 @@ import intl from 'react-intl-universal';
|
|||||||
*/
|
*/
|
||||||
export function ActionsMenu({
|
export function ActionsMenu({
|
||||||
row: { original },
|
row: { original },
|
||||||
payload: { onEdit, onDelete, onDuplicate },
|
payload: { onEdit, onDelete, onDuplicate, onInactivate, onActivate },
|
||||||
}) {
|
}) {
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Menu>
|
<Menu>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
@@ -39,6 +37,20 @@ export function ActionsMenu({
|
|||||||
text={intl.get('duplicate')}
|
text={intl.get('duplicate')}
|
||||||
onClick={safeCallback(onDuplicate, original)}
|
onClick={safeCallback(onDuplicate, original)}
|
||||||
/>
|
/>
|
||||||
|
<If condition={original.active}>
|
||||||
|
<MenuItem
|
||||||
|
text={intl.get('inactivate_item')}
|
||||||
|
icon={<Icon icon="pause-16" iconSize={16} />}
|
||||||
|
onClick={safeCallback(onInactivate, original)}
|
||||||
|
/>
|
||||||
|
</If>
|
||||||
|
<If condition={!original.active}>
|
||||||
|
<MenuItem
|
||||||
|
text={intl.get('activate_item')}
|
||||||
|
icon={<Icon icon="play-16" iconSize={16} />}
|
||||||
|
onClick={safeCallback(onActivate, original)}
|
||||||
|
/>
|
||||||
|
</If>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
icon={<Icon icon="trash-16" iconSize={16} />}
|
icon={<Icon icon="trash-16" iconSize={16} />}
|
||||||
text={intl.get('delete_customer')}
|
text={intl.get('delete_customer')}
|
||||||
@@ -74,8 +86,6 @@ export function BalanceAccessor(row) {
|
|||||||
* Retrieve customers table columns.
|
* Retrieve customers table columns.
|
||||||
*/
|
*/
|
||||||
export function useCustomersTableColumns() {
|
export function useCustomersTableColumns() {
|
||||||
|
|
||||||
|
|
||||||
return useMemo(
|
return useMemo(
|
||||||
() => [
|
() => [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,10 +1,14 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import VendorDeleteAlert from 'containers/Alerts/Vendors/VendorDeleteAlert';
|
import VendorDeleteAlert from 'containers/Alerts/Vendors/VendorDeleteAlert';
|
||||||
|
import ContactActivateAlert from '../../containers/Alerts/Contacts/ContactActivateAlert';
|
||||||
|
import ContactInactivateAlert from '../../containers/Alerts/Contacts/ContactInactivateAlert';
|
||||||
|
|
||||||
export default function VendorsAlerts() {
|
export default function VendorsAlerts() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<VendorDeleteAlert name={'vendor-delete'} />
|
<VendorDeleteAlert name={'vendor-delete'} />
|
||||||
|
<ContactActivateAlert name={'contact-activate'} />
|
||||||
|
<ContactInactivateAlert name={'contact-inactivate'} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,6 +51,19 @@ function VendorsTable({
|
|||||||
history.push(`/vendors/${vendor.id}/edit`);
|
history.push(`/vendors/${vendor.id}/edit`);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Handle cancel/confirm inactive.
|
||||||
|
const handleInactiveVendor = ({ id, contact_service }) => {
|
||||||
|
openAlert('contact-inactivate', {
|
||||||
|
contactId: id,
|
||||||
|
service: contact_service,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// Handle cancel/confirm activate.
|
||||||
|
const handleActivateVendor = ({ id, contact_service }) => {
|
||||||
|
openAlert('contact-activate', { contactId: id, service: contact_service });
|
||||||
|
};
|
||||||
|
|
||||||
// Handle click delete vendor.
|
// Handle click delete vendor.
|
||||||
const handleDeleteVendor = ({ id }) => {
|
const handleDeleteVendor = ({ id }) => {
|
||||||
openAlert('vendor-delete', { vendorId: id });
|
openAlert('vendor-delete', { vendorId: id });
|
||||||
@@ -104,6 +117,8 @@ function VendorsTable({
|
|||||||
onEdit: handleEditVendor,
|
onEdit: handleEditVendor,
|
||||||
onDelete: handleDeleteVendor,
|
onDelete: handleDeleteVendor,
|
||||||
onDuplicate: handleContactDuplicate,
|
onDuplicate: handleContactDuplicate,
|
||||||
|
onInactivate: handleInactiveVendor,
|
||||||
|
onActivate: handleActivateVendor,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import {
|
|||||||
Intent,
|
Intent,
|
||||||
} from '@blueprintjs/core';
|
} from '@blueprintjs/core';
|
||||||
import intl from 'react-intl-universal';
|
import intl from 'react-intl-universal';
|
||||||
import { Icon, Money } from 'components';
|
import { Icon, Money, If } from 'components';
|
||||||
import { safeCallback, firstLettersArgs } from 'utils';
|
import { safeCallback, firstLettersArgs } from 'utils';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -17,10 +17,8 @@ import { safeCallback, firstLettersArgs } from 'utils';
|
|||||||
*/
|
*/
|
||||||
export function ActionsMenu({
|
export function ActionsMenu({
|
||||||
row: { original },
|
row: { original },
|
||||||
payload: { onEdit, onDelete, onDuplicate },
|
payload: { onEdit, onDelete, onDuplicate, onInactivate, onActivate },
|
||||||
}) {
|
}) {
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Menu>
|
<Menu>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
@@ -38,6 +36,20 @@ export function ActionsMenu({
|
|||||||
text={intl.get('duplicate')}
|
text={intl.get('duplicate')}
|
||||||
onClick={safeCallback(onDuplicate, original)}
|
onClick={safeCallback(onDuplicate, original)}
|
||||||
/>
|
/>
|
||||||
|
<If condition={original.active}>
|
||||||
|
<MenuItem
|
||||||
|
text={intl.get('inactivate_item')}
|
||||||
|
icon={<Icon icon="pause-16" iconSize={16} />}
|
||||||
|
onClick={safeCallback(onInactivate, original)}
|
||||||
|
/>
|
||||||
|
</If>
|
||||||
|
<If condition={!original.active}>
|
||||||
|
<MenuItem
|
||||||
|
text={intl.get('activate_item')}
|
||||||
|
icon={<Icon icon="play-16" iconSize={16} />}
|
||||||
|
onClick={safeCallback(onActivate, original)}
|
||||||
|
/>
|
||||||
|
</If>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
icon={<Icon icon="trash-16" iconSize={16} />}
|
icon={<Icon icon="trash-16" iconSize={16} />}
|
||||||
text={intl.get('delete_vendor')}
|
text={intl.get('delete_vendor')}
|
||||||
@@ -87,8 +99,6 @@ export function BalanceAccessor({ closing_balance, currency_code }) {
|
|||||||
* Retrieve the vendors table columns.
|
* Retrieve the vendors table columns.
|
||||||
*/
|
*/
|
||||||
export function useVendorsTableColumns() {
|
export function useVendorsTableColumns() {
|
||||||
|
|
||||||
|
|
||||||
return React.useMemo(
|
return React.useMemo(
|
||||||
() => [
|
() => [
|
||||||
{
|
{
|
||||||
@@ -127,7 +137,7 @@ export function useVendorsTableColumns() {
|
|||||||
accessor: BalanceAccessor,
|
accessor: BalanceAccessor,
|
||||||
className: 'receivable_balance',
|
className: 'receivable_balance',
|
||||||
width: 100,
|
width: 100,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
[],
|
[],
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
|
import { useMutation, useQueryClient } from 'react-query';
|
||||||
import useApiRequest from '../useRequest';
|
import useApiRequest from '../useRequest';
|
||||||
import { useQueryTenant } from '../useQueryRequest';
|
import { useQueryTenant } from '../useQueryRequest';
|
||||||
|
import t from './types';
|
||||||
|
|
||||||
|
// Common invalidate queries.
|
||||||
|
const commonInvalidateQueries = (queryClient) => {
|
||||||
|
// Invalidate vendors.
|
||||||
|
queryClient.invalidateQueries(t.VENDORS);
|
||||||
|
// Invalidate customers.
|
||||||
|
queryClient.invalidateQueries(t.CUSTOMERS);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve the contact duplicate.
|
* Retrieve the contact duplicate.
|
||||||
@@ -33,3 +43,41 @@ export function useAutoCompleteContacts(props) {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Activate the given Contact.
|
||||||
|
*/
|
||||||
|
export function useActivateContact(props) {
|
||||||
|
const queryClient = useQueryClient();
|
||||||
|
const apiRequest = useApiRequest();
|
||||||
|
|
||||||
|
return useMutation((id) => apiRequest.post(`contacts/${id}/activate`), {
|
||||||
|
onSuccess: (res, id) => {
|
||||||
|
// Invalidate specific contact.
|
||||||
|
queryClient.invalidateQueries([t.CONTACT, id]);
|
||||||
|
|
||||||
|
// Common invalidate queries.
|
||||||
|
commonInvalidateQueries(queryClient);
|
||||||
|
},
|
||||||
|
...props,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inactivate the given contact.
|
||||||
|
*/
|
||||||
|
export function useInactivateContact(props) {
|
||||||
|
const queryClient = useQueryClient();
|
||||||
|
const apiRequest = useApiRequest();
|
||||||
|
|
||||||
|
return useMutation((id) => apiRequest.post(`contacts/${id}/inactivate`), {
|
||||||
|
onSuccess: (res, id) => {
|
||||||
|
// Invalidate specific item.
|
||||||
|
queryClient.invalidateQueries([t.CONTACT, id]);
|
||||||
|
|
||||||
|
// Common invalidate queries.
|
||||||
|
commonInvalidateQueries(queryClient);
|
||||||
|
},
|
||||||
|
...props,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|||||||
@@ -126,6 +126,11 @@ const LANDED_COSTS = {
|
|||||||
LANDED_COST_TRANSACTION: 'LANDED_COST_TRANSACTION',
|
LANDED_COST_TRANSACTION: 'LANDED_COST_TRANSACTION',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const CONTACTS = {
|
||||||
|
CONTACTS: 'CONTACTS',
|
||||||
|
CONTACT: 'CONTACT',
|
||||||
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
...ACCOUNTS,
|
...ACCOUNTS,
|
||||||
...BILLS,
|
...BILLS,
|
||||||
@@ -147,4 +152,5 @@ export default {
|
|||||||
...EXPENSES,
|
...EXPENSES,
|
||||||
...MANUAL_JOURNALS,
|
...MANUAL_JOURNALS,
|
||||||
...LANDED_COSTS,
|
...LANDED_COSTS,
|
||||||
|
...CONTACTS,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1198,5 +1198,12 @@
|
|||||||
"non-inventory":"غير مخزون",
|
"non-inventory":"غير مخزون",
|
||||||
"terms_conditions":"الشروط والأحكام",
|
"terms_conditions":"الشروط والأحكام",
|
||||||
"your_invoice_numbers_are_set_on_auto_increment_mod_are_you_sure_changing_this_setting":"Your invoice numbers are set on auto-increment mod. Are you sure changing this setting?",
|
"your_invoice_numbers_are_set_on_auto_increment_mod_are_you_sure_changing_this_setting":"Your invoice numbers are set on auto-increment mod. Are you sure changing this setting?",
|
||||||
"auto_incrementing_number":"Auto-incrementing number"
|
"auto_incrementing_number":"Auto-incrementing number",
|
||||||
}
|
"the_inventory_adjustment_has_been_published": "تم نشر تسوية المخزون",
|
||||||
|
"are_sure_to_publish_this_inventory_adjustment": "هل أنت متأكد أنك تريد نشر هذا المخزون ؟",
|
||||||
|
"the_contact_has_been_activated_successfully": "تم تفعيل جهة اتصال بنجاح.",
|
||||||
|
"the_contact_has_been_inactivated_successfully": "تم إلغاء تنشيط جهة اتصال بنجاح.",
|
||||||
|
"are_sure_to_inactive_this_contact": "هل أنت متأكد أنك تريد إلغاء تنشيط جهة اتصال؟ ستكون قادرًا على تنشيطه لاحقًا",
|
||||||
|
"are_sure_to_activate_this_contact": "هل أنت متأكد أنك تريد تفعيل جهة اتصال؟ ستتمكن من تعطيله لاحقًا"
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1187,6 +1187,9 @@
|
|||||||
"your_invoice_numbers_are_set_on_auto_increment_mod_are_you_sure_changing_this_setting":"Your invoice numbers are set on auto-increment mod. Are you sure changing this setting?",
|
"your_invoice_numbers_are_set_on_auto_increment_mod_are_you_sure_changing_this_setting":"Your invoice numbers are set on auto-increment mod. Are you sure changing this setting?",
|
||||||
"auto_incrementing_number":"Auto-incrementing number",
|
"auto_incrementing_number":"Auto-incrementing number",
|
||||||
"the_inventory_adjustment_has_been_published": "The Inventory adjustment has been published",
|
"the_inventory_adjustment_has_been_published": "The Inventory adjustment has been published",
|
||||||
"are_sure_to_publish_this_inventory_adjustment": "Are you sure you want to publish this inventory?"
|
"are_sure_to_publish_this_inventory_adjustment": "Are you sure you want to publish this inventory?",
|
||||||
|
"the_contact_has_been_activated_successfully": "The contact has been inactivated successfully.",
|
||||||
|
"the_contact_has_been_inactivated_successfully": "The contact has been inactivated successfully.",
|
||||||
|
"are_sure_to_inactive_this_contact": "Are you sure you want to inactive this contact ? You will be able to activate it later",
|
||||||
|
"are_sure_to_activate_this_contact": "Are you sure you want to activate this contact ? You will be able to inactivate it later"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user