mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
843 lines
19 KiB
TypeScript
843 lines
19 KiB
TypeScript
import { Fyo, t } from 'fyo';
|
|
import { Doc } from 'fyo/model/doc';
|
|
import {
|
|
Action,
|
|
ColumnConfig,
|
|
DocStatus,
|
|
LeadStatus,
|
|
RenderData,
|
|
} from 'fyo/model/types';
|
|
import { DateTime } from 'luxon';
|
|
import { Money } from 'pesa';
|
|
import { safeParseFloat } from 'utils/index';
|
|
import { Router } from 'vue-router';
|
|
import {
|
|
AccountRootType,
|
|
AccountRootTypeEnum,
|
|
} from './baseModels/Account/types';
|
|
import { numberSeriesDefaultsMap } from './baseModels/Defaults/Defaults';
|
|
import { Invoice } from './baseModels/Invoice/Invoice';
|
|
import { SalesQuote } from './baseModels/SalesQuote/SalesQuote';
|
|
import { StockMovement } from './inventory/StockMovement';
|
|
import { StockTransfer } from './inventory/StockTransfer';
|
|
import { InvoiceStatus, ModelNameEnum } from './types';
|
|
import { Lead } from './baseModels/Lead/Lead';
|
|
import { PricingRule } from './baseModels/PricingRule/PricingRule';
|
|
import { ValidationError } from 'fyo/utils/errors';
|
|
import { ApplicablePricingRules } from './baseModels/Invoice/types';
|
|
|
|
export function getQuoteActions(
|
|
fyo: Fyo,
|
|
schemaName: ModelNameEnum.SalesQuote
|
|
): Action[] {
|
|
return [getMakeInvoiceAction(fyo, schemaName)];
|
|
}
|
|
|
|
export function getLeadActions(fyo: Fyo): Action[] {
|
|
return [getCreateCustomerAction(fyo), getSalesQuoteAction(fyo)];
|
|
}
|
|
|
|
export function getInvoiceActions(
|
|
fyo: Fyo,
|
|
schemaName: ModelNameEnum.SalesInvoice | ModelNameEnum.PurchaseInvoice
|
|
): Action[] {
|
|
return [
|
|
getMakePaymentAction(fyo),
|
|
getMakeStockTransferAction(fyo, schemaName),
|
|
getLedgerLinkAction(fyo),
|
|
getMakeReturnDocAction(fyo),
|
|
];
|
|
}
|
|
|
|
export function getStockTransferActions(
|
|
fyo: Fyo,
|
|
schemaName: ModelNameEnum.Shipment | ModelNameEnum.PurchaseReceipt
|
|
): Action[] {
|
|
return [
|
|
getMakeInvoiceAction(fyo, schemaName),
|
|
getLedgerLinkAction(fyo, false),
|
|
getLedgerLinkAction(fyo, true),
|
|
getMakeReturnDocAction(fyo),
|
|
];
|
|
}
|
|
|
|
export function getMakeStockTransferAction(
|
|
fyo: Fyo,
|
|
schemaName: ModelNameEnum.SalesInvoice | ModelNameEnum.PurchaseInvoice
|
|
): Action {
|
|
let label = fyo.t`Shipment`;
|
|
if (schemaName === ModelNameEnum.PurchaseInvoice) {
|
|
label = fyo.t`Purchase Receipt`;
|
|
}
|
|
|
|
return {
|
|
label,
|
|
group: fyo.t`Create`,
|
|
condition: (doc: Doc) => doc.isSubmitted && !!doc.stockNotTransferred,
|
|
action: async (doc: Doc) => {
|
|
const transfer = await (doc as Invoice).getStockTransfer();
|
|
if (!transfer || !transfer.name) {
|
|
return;
|
|
}
|
|
|
|
const { routeTo } = await import('src/utils/ui');
|
|
const path = `/edit/${transfer.schemaName}/${transfer.name}`;
|
|
await routeTo(path);
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getMakeInvoiceAction(
|
|
fyo: Fyo,
|
|
schemaName:
|
|
| ModelNameEnum.Shipment
|
|
| ModelNameEnum.PurchaseReceipt
|
|
| ModelNameEnum.SalesQuote
|
|
): Action {
|
|
let label = fyo.t`Sales Invoice`;
|
|
if (schemaName === ModelNameEnum.PurchaseReceipt) {
|
|
label = fyo.t`Purchase Invoice`;
|
|
}
|
|
|
|
return {
|
|
label,
|
|
group: fyo.t`Create`,
|
|
condition: (doc: Doc) => {
|
|
if (schemaName === ModelNameEnum.SalesQuote) {
|
|
return doc.isSubmitted;
|
|
} else {
|
|
return doc.isSubmitted && !doc.backReference;
|
|
}
|
|
},
|
|
action: async (doc: Doc) => {
|
|
const invoice = await (doc as SalesQuote | StockTransfer).getInvoice();
|
|
if (!invoice || !invoice.name) {
|
|
return;
|
|
}
|
|
|
|
const { routeTo } = await import('src/utils/ui');
|
|
const path = `/edit/${invoice.schemaName}/${invoice.name}`;
|
|
await routeTo(path);
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getCreateCustomerAction(fyo: Fyo): Action {
|
|
return {
|
|
group: fyo.t`Create`,
|
|
label: fyo.t`Customer`,
|
|
action: async (doc: Doc, router) => {
|
|
const customerData = (doc as Lead).createCustomer();
|
|
|
|
if (!customerData.name) {
|
|
return;
|
|
}
|
|
await router.push(`/edit/Party/${customerData.name}`);
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getSalesQuoteAction(fyo: Fyo): Action {
|
|
return {
|
|
group: fyo.t`Create`,
|
|
label: fyo.t`Sales Quote`,
|
|
action: async (doc, router) => {
|
|
const salesQuoteData = (doc as Lead).createSalesQuote();
|
|
if (!salesQuoteData.name) {
|
|
return;
|
|
}
|
|
await router.push(`/edit/SalesQuote/${salesQuoteData.name}`);
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getMakePaymentAction(fyo: Fyo): Action {
|
|
return {
|
|
label: fyo.t`Payment`,
|
|
group: fyo.t`Create`,
|
|
condition: (doc: Doc) =>
|
|
doc.isSubmitted && !(doc.outstandingAmount as Money).isZero(),
|
|
action: async (doc, router) => {
|
|
const schemaName = doc.schema.name;
|
|
const payment = (doc as Invoice).getPayment();
|
|
if (!payment) {
|
|
return;
|
|
}
|
|
|
|
await payment?.set('referenceType', schemaName);
|
|
const currentRoute = router.currentRoute.value.fullPath;
|
|
payment.once('afterSync', async () => {
|
|
await payment.submit();
|
|
await doc.load();
|
|
await router.push(currentRoute);
|
|
});
|
|
|
|
const hideFields = ['party', 'for'];
|
|
|
|
if (!fyo.singles.AccountingSettings?.enableInvoiceReturns) {
|
|
hideFields.push('paymentType');
|
|
}
|
|
|
|
if (doc.schemaName === ModelNameEnum.SalesInvoice) {
|
|
hideFields.push('account');
|
|
} else {
|
|
hideFields.push('paymentAccount');
|
|
}
|
|
|
|
await payment.runFormulas();
|
|
const { openQuickEdit } = await import('src/utils/ui');
|
|
await openQuickEdit({
|
|
doc: payment,
|
|
hideFields,
|
|
});
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getLedgerLinkAction(fyo: Fyo, isStock = false): Action {
|
|
let label = fyo.t`Accounting Entries`;
|
|
let reportClassName: 'GeneralLedger' | 'StockLedger' = 'GeneralLedger';
|
|
|
|
if (isStock) {
|
|
label = fyo.t`Stock Entries`;
|
|
reportClassName = 'StockLedger';
|
|
}
|
|
|
|
return {
|
|
label,
|
|
group: fyo.t`View`,
|
|
condition: (doc: Doc) => doc.isSubmitted,
|
|
action: async (doc: Doc, router: Router) => {
|
|
const route = getLedgerLink(doc, reportClassName);
|
|
await router.push(route);
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getLedgerLink(
|
|
doc: Doc,
|
|
reportClassName: 'GeneralLedger' | 'StockLedger'
|
|
) {
|
|
return {
|
|
name: 'Report',
|
|
params: {
|
|
reportClassName,
|
|
defaultFilters: JSON.stringify({
|
|
referenceType: doc.schemaName,
|
|
referenceName: doc.name,
|
|
}),
|
|
},
|
|
};
|
|
}
|
|
export function getMakeReturnDocAction(fyo: Fyo): Action {
|
|
return {
|
|
label: fyo.t`Return`,
|
|
group: fyo.t`Create`,
|
|
condition: (doc: Doc) =>
|
|
(!!fyo.singles.AccountingSettings?.enableInvoiceReturns ||
|
|
!!fyo.singles.InventorySettings?.enableStockReturns) &&
|
|
doc.isSubmitted &&
|
|
!doc.isReturn,
|
|
action: async (doc: Doc) => {
|
|
let returnDoc: Invoice | StockTransfer | undefined;
|
|
|
|
if (doc instanceof Invoice || doc instanceof StockTransfer) {
|
|
returnDoc = await doc.getReturnDoc();
|
|
}
|
|
|
|
if (!returnDoc || !returnDoc.name) {
|
|
return;
|
|
}
|
|
|
|
const { routeTo } = await import('src/utils/ui');
|
|
const path = `/edit/${doc.schemaName}/${returnDoc.name}`;
|
|
await routeTo(path);
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getTransactionStatusColumn(): ColumnConfig {
|
|
return {
|
|
label: t`Status`,
|
|
fieldname: 'status',
|
|
fieldtype: 'Select',
|
|
render(doc) {
|
|
const status = getDocStatus(doc) as InvoiceStatus;
|
|
const color = statusColor[status] ?? 'gray';
|
|
const label = getStatusText(status);
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="${color}">${label}</Badge>`,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getLeadStatusColumn(): ColumnConfig {
|
|
return {
|
|
label: t`Status`,
|
|
fieldname: 'status',
|
|
fieldtype: 'Select',
|
|
render(doc) {
|
|
const status = getLeadStatus(doc) as LeadStatus;
|
|
const color = statusColor[status] ?? 'gray';
|
|
const label = getStatusTextOfLead(status);
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="${color}">${label}</Badge>`,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
export const statusColor: Record<
|
|
DocStatus | InvoiceStatus | LeadStatus,
|
|
string | undefined
|
|
> = {
|
|
'': 'gray',
|
|
Draft: 'gray',
|
|
Open: 'gray',
|
|
Replied: 'yellow',
|
|
Opportunity: 'yellow',
|
|
Unpaid: 'orange',
|
|
Paid: 'green',
|
|
Interested: 'yellow',
|
|
Converted: 'green',
|
|
Quotation: 'green',
|
|
Saved: 'gray',
|
|
NotSaved: 'gray',
|
|
Submitted: 'green',
|
|
Cancelled: 'red',
|
|
DonotContact: 'red',
|
|
Return: 'green',
|
|
ReturnIssued: 'green',
|
|
};
|
|
|
|
export function getStatusText(status: DocStatus | InvoiceStatus): string {
|
|
switch (status) {
|
|
case 'Draft':
|
|
return t`Draft`;
|
|
case 'Saved':
|
|
return t`Saved`;
|
|
case 'NotSaved':
|
|
return t`Not Saved`;
|
|
case 'Submitted':
|
|
return t`Submitted`;
|
|
case 'Cancelled':
|
|
return t`Cancelled`;
|
|
case 'Paid':
|
|
return t`Paid`;
|
|
case 'Unpaid':
|
|
return t`Unpaid`;
|
|
case 'Return':
|
|
return t`Return`;
|
|
case 'ReturnIssued':
|
|
return t`Return Issued`;
|
|
default:
|
|
return '';
|
|
}
|
|
}
|
|
|
|
export function getStatusTextOfLead(status: LeadStatus): string {
|
|
switch (status) {
|
|
case 'Open':
|
|
return t`Open`;
|
|
case 'Replied':
|
|
return t`Replied`;
|
|
case 'Opportunity':
|
|
return t`Opportunity`;
|
|
case 'Interested':
|
|
return t`Interested`;
|
|
case 'Converted':
|
|
return t`Converted`;
|
|
case 'Quotation':
|
|
return t`Quotation`;
|
|
case 'DonotContact':
|
|
return t`Do not Contact`;
|
|
default:
|
|
return '';
|
|
}
|
|
}
|
|
|
|
export function getLeadStatus(
|
|
doc?: Lead | Doc | RenderData
|
|
): LeadStatus | DocStatus {
|
|
if (!doc) {
|
|
return '';
|
|
}
|
|
|
|
return doc.status as LeadStatus;
|
|
}
|
|
|
|
export function getDocStatus(
|
|
doc?: RenderData | Doc
|
|
): DocStatus | InvoiceStatus {
|
|
if (!doc) {
|
|
return '';
|
|
}
|
|
|
|
if (doc.notInserted) {
|
|
return 'Draft';
|
|
}
|
|
|
|
if (doc.dirty) {
|
|
return 'NotSaved';
|
|
}
|
|
|
|
if (!doc.schema?.isSubmittable) {
|
|
return 'Saved';
|
|
}
|
|
|
|
return getSubmittableDocStatus(doc);
|
|
}
|
|
|
|
function getSubmittableDocStatus(doc: RenderData | Doc) {
|
|
if (
|
|
[ModelNameEnum.SalesInvoice, ModelNameEnum.PurchaseInvoice].includes(
|
|
doc.schema.name as ModelNameEnum
|
|
)
|
|
) {
|
|
return getInvoiceStatus(doc);
|
|
}
|
|
|
|
if (
|
|
[ModelNameEnum.Shipment, ModelNameEnum.PurchaseReceipt].includes(
|
|
doc.schema.name as ModelNameEnum
|
|
)
|
|
) {
|
|
if (!!doc.returnAgainst && doc.submitted && !doc.cancelled) {
|
|
return 'Return';
|
|
}
|
|
|
|
if (doc.isReturned && doc.submitted && !doc.cancelled) {
|
|
return 'ReturnIssued';
|
|
}
|
|
}
|
|
|
|
if (!!doc.submitted && !doc.cancelled) {
|
|
return 'Submitted';
|
|
}
|
|
|
|
if (!!doc.submitted && !!doc.cancelled) {
|
|
return 'Cancelled';
|
|
}
|
|
|
|
return 'Saved';
|
|
}
|
|
|
|
export function getInvoiceStatus(doc: RenderData | Doc): InvoiceStatus {
|
|
if (doc.submitted && !doc.cancelled && doc.returnAgainst) {
|
|
return 'Return';
|
|
}
|
|
|
|
if (doc.submitted && !doc.cancelled && doc.isReturned) {
|
|
return 'ReturnIssued';
|
|
}
|
|
|
|
if (
|
|
doc.submitted &&
|
|
!doc.cancelled &&
|
|
(doc.outstandingAmount as Money).isZero()
|
|
) {
|
|
return 'Paid';
|
|
}
|
|
|
|
if (
|
|
doc.submitted &&
|
|
!doc.cancelled &&
|
|
(doc.outstandingAmount as Money).isPositive()
|
|
) {
|
|
return 'Unpaid';
|
|
}
|
|
|
|
if (doc.cancelled) {
|
|
return 'Cancelled';
|
|
}
|
|
|
|
return 'Saved';
|
|
}
|
|
|
|
export function getSerialNumberStatusColumn(): ColumnConfig {
|
|
return {
|
|
label: t`Status`,
|
|
fieldname: 'status',
|
|
fieldtype: 'Select',
|
|
render(doc) {
|
|
let status = doc.status;
|
|
if (typeof status !== 'string') {
|
|
status = 'Inactive';
|
|
}
|
|
|
|
const color = serialNumberStatusColor[status] ?? 'gray';
|
|
const label = getSerialNumberStatusText(status);
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="${color}">${label}</Badge>`,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
export const serialNumberStatusColor: Record<string, string | undefined> = {
|
|
Inactive: 'gray',
|
|
Active: 'green',
|
|
Delivered: 'blue',
|
|
};
|
|
|
|
export function getSerialNumberStatusText(status: string): string {
|
|
switch (status) {
|
|
case 'Inactive':
|
|
return t`Inactive`;
|
|
case 'Active':
|
|
return t`Active`;
|
|
case 'Delivered':
|
|
return t`Delivered`;
|
|
default:
|
|
return t`Inactive`;
|
|
}
|
|
}
|
|
|
|
export function getPriceListStatusColumn(): ColumnConfig {
|
|
return {
|
|
label: t`Enabled For`,
|
|
fieldname: 'enabledFor',
|
|
fieldtype: 'Select',
|
|
render({ isSales, isPurchase }) {
|
|
let status = t`None`;
|
|
|
|
if (isSales && isPurchase) {
|
|
status = t`Sales and Purchase`;
|
|
} else if (isSales) {
|
|
status = t`Sales`;
|
|
} else if (isPurchase) {
|
|
status = t`Purchase`;
|
|
}
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="gray">${status}</Badge>`,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
export function getIsDocEnabledColumn(): ColumnConfig {
|
|
return {
|
|
label: t`Enabled`,
|
|
fieldname: 'enabled',
|
|
fieldtype: 'Data',
|
|
render(doc) {
|
|
let status = t`Disabled`;
|
|
let color = 'orange';
|
|
if (doc.isEnabled) {
|
|
status = t`Enabled`;
|
|
color = 'green';
|
|
}
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="${color}">${status}</Badge>`,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
export async function getExchangeRate({
|
|
fromCurrency,
|
|
toCurrency,
|
|
date,
|
|
}: {
|
|
fromCurrency: string;
|
|
toCurrency: string;
|
|
date?: string;
|
|
}) {
|
|
if (!fetch) {
|
|
return 1;
|
|
}
|
|
|
|
if (!date) {
|
|
date = DateTime.local().toISODate();
|
|
}
|
|
|
|
const cacheKey = `currencyExchangeRate:${date}:${fromCurrency}:${toCurrency}`;
|
|
|
|
let exchangeRate = 0;
|
|
if (localStorage) {
|
|
exchangeRate = safeParseFloat(localStorage.getItem(cacheKey) as string);
|
|
}
|
|
|
|
if (exchangeRate && exchangeRate !== 1) {
|
|
return exchangeRate;
|
|
}
|
|
|
|
try {
|
|
const res = await fetch(
|
|
`https://api.vatcomply.com/rates?date=${date}&base=${fromCurrency}&symbols=${toCurrency}`
|
|
);
|
|
const data = (await res.json()) as {
|
|
base: string;
|
|
data: string;
|
|
rates: Record<string, number>;
|
|
};
|
|
exchangeRate = data.rates[toCurrency];
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(error);
|
|
exchangeRate ??= 1;
|
|
}
|
|
|
|
if (localStorage) {
|
|
localStorage.setItem(cacheKey, String(exchangeRate));
|
|
}
|
|
|
|
return exchangeRate;
|
|
}
|
|
|
|
export function isCredit(rootType: AccountRootType) {
|
|
switch (rootType) {
|
|
case AccountRootTypeEnum.Asset:
|
|
return false;
|
|
case AccountRootTypeEnum.Liability:
|
|
return true;
|
|
case AccountRootTypeEnum.Equity:
|
|
return true;
|
|
case AccountRootTypeEnum.Expense:
|
|
return false;
|
|
case AccountRootTypeEnum.Income:
|
|
return true;
|
|
default:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
export function getNumberSeries(schemaName: string, fyo: Fyo) {
|
|
const numberSeriesKey = numberSeriesDefaultsMap[schemaName];
|
|
if (!numberSeriesKey) {
|
|
return undefined;
|
|
}
|
|
|
|
const defaults = fyo.singles.Defaults;
|
|
const field = fyo.getField(schemaName, 'numberSeries');
|
|
const value = defaults?.[numberSeriesKey] as string | undefined;
|
|
return value ?? (field?.default as string | undefined);
|
|
}
|
|
|
|
export function getDocStatusListColumn(): ColumnConfig {
|
|
return {
|
|
label: t`Status`,
|
|
fieldname: 'status',
|
|
fieldtype: 'Select',
|
|
render(doc) {
|
|
const status = getDocStatus(doc);
|
|
const color = statusColor[status] ?? 'gray';
|
|
const label = getStatusText(status);
|
|
|
|
return {
|
|
template: `<Badge class="text-xs" color="${color}">${label}</Badge>`,
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
type ModelsWithItems = Invoice | StockTransfer | StockMovement;
|
|
export async function addItem<M extends ModelsWithItems>(name: string, doc: M) {
|
|
if (!doc.canEdit) {
|
|
return;
|
|
}
|
|
|
|
const items = (doc.items ?? []) as NonNullable<M['items']>[number][];
|
|
|
|
let item = items.find((i) => i.item === name);
|
|
if (item) {
|
|
const q = item.quantity ?? 0;
|
|
await item.set('quantity', q + 1);
|
|
return;
|
|
}
|
|
|
|
await doc.append('items');
|
|
item = doc.items?.at(-1);
|
|
if (!item) {
|
|
return;
|
|
}
|
|
|
|
await item.set('item', name);
|
|
}
|
|
|
|
export async function getPricingRule(
|
|
doc: Invoice
|
|
): Promise<ApplicablePricingRules[] | null> {
|
|
if (
|
|
!doc.fyo.singles.AccountingSettings?.enablePricingRule ||
|
|
!doc.isSales ||
|
|
!doc.items
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
const pricingRules: ApplicablePricingRules[] = [];
|
|
|
|
for (const item of doc.items) {
|
|
if (item.isFreeItem) {
|
|
continue;
|
|
}
|
|
|
|
const pricingRuleDocNames = (
|
|
await doc.fyo.db.getAll(ModelNameEnum.PricingRuleItem, {
|
|
fields: ['parent'],
|
|
filters: {
|
|
item: item.item as string,
|
|
unit: item.unit as string,
|
|
},
|
|
})
|
|
).map((doc) => doc.parent) as string[];
|
|
|
|
const pricingRuleDocsForItem = (await doc.fyo.db.getAll(
|
|
ModelNameEnum.PricingRule,
|
|
{
|
|
fields: ['*'],
|
|
filters: {
|
|
name: ['in', pricingRuleDocNames],
|
|
isEnabled: true,
|
|
},
|
|
orderBy: 'priority',
|
|
order: 'desc',
|
|
}
|
|
)) as PricingRule[];
|
|
|
|
const filtered = filterPricingRules(
|
|
pricingRuleDocsForItem,
|
|
doc.date as Date,
|
|
item.quantity as number,
|
|
item.amount as Money
|
|
);
|
|
|
|
if (!filtered.length) {
|
|
continue;
|
|
}
|
|
|
|
const isPricingRuleHasConflicts = getPricingRulesConflicts(
|
|
filtered,
|
|
item.item as string
|
|
);
|
|
|
|
if (isPricingRuleHasConflicts) {
|
|
continue;
|
|
}
|
|
|
|
pricingRules.push({
|
|
applyOnItem: item.item as string,
|
|
pricingRule: filtered[0],
|
|
});
|
|
}
|
|
|
|
return pricingRules;
|
|
}
|
|
|
|
export function filterPricingRules(
|
|
pricingRuleDocsForItem: PricingRule[],
|
|
sinvDate: Date,
|
|
quantity: number,
|
|
amount: Money
|
|
): PricingRule[] | [] {
|
|
const filteredPricingRules: PricingRule[] | undefined = [];
|
|
|
|
for (const pricingRuleDoc of pricingRuleDocsForItem) {
|
|
if (canApplyPricingRule(pricingRuleDoc, sinvDate, quantity, amount)) {
|
|
filteredPricingRules.push(pricingRuleDoc);
|
|
}
|
|
}
|
|
return filteredPricingRules;
|
|
}
|
|
|
|
export function canApplyPricingRule(
|
|
pricingRuleDoc: PricingRule,
|
|
sinvDate: Date,
|
|
quantity: number,
|
|
amount: Money
|
|
): boolean {
|
|
// Filter by Quantity
|
|
if (
|
|
(pricingRuleDoc.minQuantity as number) > 0 &&
|
|
quantity < (pricingRuleDoc.minQuantity as number)
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
if (
|
|
(pricingRuleDoc.maxQuantity as number) > 0 &&
|
|
quantity > (pricingRuleDoc.maxQuantity as number)
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
// Filter by Amount
|
|
if (
|
|
!pricingRuleDoc.minAmount?.isZero() &&
|
|
amount.lte(pricingRuleDoc.minAmount as Money)
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
if (
|
|
!pricingRuleDoc.maxAmount?.isZero() &&
|
|
amount.gte(pricingRuleDoc.maxAmount as Money)
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
// Filter by Validity
|
|
if (
|
|
pricingRuleDoc.validFrom &&
|
|
new Date(sinvDate.setHours(0, 0, 0, 0)).toISOString() <
|
|
pricingRuleDoc.validFrom.toISOString()
|
|
) {
|
|
return false;
|
|
}
|
|
if (
|
|
pricingRuleDoc.validTo &&
|
|
new Date(sinvDate.setHours(0, 0, 0, 0)).toISOString() >
|
|
pricingRuleDoc.validTo.toISOString()
|
|
) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
export function getPricingRulesConflicts(
|
|
pricingRules: PricingRule[],
|
|
item: string
|
|
): string[] | undefined {
|
|
const pricingRuleDocs = Array.from(pricingRules);
|
|
|
|
const firstPricingRule = pricingRuleDocs.shift();
|
|
if (!firstPricingRule) {
|
|
return;
|
|
}
|
|
|
|
const conflictingPricingRuleNames: string[] = [];
|
|
for (const pricingRuleDoc of pricingRuleDocs.slice(0)) {
|
|
if (pricingRuleDoc.priority !== firstPricingRule?.priority) {
|
|
continue;
|
|
}
|
|
|
|
conflictingPricingRuleNames.push(pricingRuleDoc.name as string);
|
|
}
|
|
|
|
if (!conflictingPricingRuleNames.length) {
|
|
return;
|
|
}
|
|
|
|
throw new ValidationError(
|
|
t`Pricing Rules ${
|
|
firstPricingRule.name as string
|
|
}, ${conflictingPricingRuleNames.join(
|
|
', '
|
|
)} has the same Priority for the Item ${item}.`
|
|
);
|
|
}
|
|
|
|
export function roundFreeItemQty(
|
|
quantity: number,
|
|
roundingMethod: 'round' | 'floor' | 'ceil'
|
|
): number {
|
|
return Math[roundingMethod](quantity);
|
|
}
|