2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/models/inventory/StockManager.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

257 lines
6.3 KiB
TypeScript
Raw Normal View History

2022-10-28 08:04:08 +00:00
import { Fyo, t } from 'fyo';
import { ValidationError } from 'fyo/utils/errors';
import { ModelNameEnum } from 'models/types';
import { Money } from 'pesa';
import { StockLedgerEntry } from './StockLedgerEntry';
2022-10-29 07:07:52 +00:00
import { SMDetails, SMIDetails, SMTransferDetails } from './types';
2022-10-28 08:04:08 +00:00
export class StockManager {
/**
2022-10-29 07:07:52 +00:00
* The Stock Manager manages a group of Stock Manager Items
* all of which would belong to a single transaction such as a
* single Stock Movement entry.
*/
items: StockManagerItem[];
details: SMDetails;
isCancelled: boolean;
fyo: Fyo;
constructor(details: SMDetails, isCancelled: boolean, fyo: Fyo) {
this.items = [];
this.details = details;
this.isCancelled = isCancelled;
this.fyo = fyo;
}
async createTransfers(transferDetails: SMTransferDetails[]) {
2022-11-03 10:53:34 +00:00
const detailsList = transferDetails.map((d) => this.#getSMIDetails(d));
for (const details of detailsList) {
await this.#validate(details);
}
for (const details of detailsList) {
await this.#createTransfer(details);
}
await this.#sync();
2022-10-29 07:07:52 +00:00
}
async cancelTransfers() {
const { referenceName, referenceType } = this.details;
await this.fyo.db.deleteAll(ModelNameEnum.StockLedgerEntry, {
referenceType,
referenceName,
});
}
async #sync() {
2022-10-29 07:07:52 +00:00
for (const item of this.items) {
await item.sync();
}
}
2022-11-03 10:53:34 +00:00
async #createTransfer(details: SMIDetails) {
const item = new StockManagerItem(details, this.fyo);
2022-11-03 10:53:34 +00:00
item.transferStock();
this.items.push(item);
}
2022-10-29 07:07:52 +00:00
#getSMIDetails(transferDetails: SMTransferDetails): SMIDetails {
return Object.assign({}, this.details, transferDetails);
}
2022-11-03 10:53:34 +00:00
async #validate(details: SMIDetails) {
this.#validateRate(details);
this.#validateQuantity(details);
this.#validateLocation(details);
await this.#validateStockAvailability(details);
}
#validateQuantity(details: SMIDetails) {
if (!details.quantity) {
throw new ValidationError(t`Quantity needs to be set`);
}
if (details.quantity <= 0) {
throw new ValidationError(
t`Quantity (${details.quantity}) has to be greater than zero`
);
}
}
#validateRate(details: SMIDetails) {
if (!details.rate) {
throw new ValidationError(t`Rate needs to be set`);
}
if (details.rate.lte(0)) {
throw new ValidationError(
t`Rate (${details.rate.float}) has to be greater than zero`
);
}
}
#validateLocation(details: SMIDetails) {
if (details.fromLocation) {
return;
}
if (details.toLocation) {
return;
}
throw new ValidationError(t`Both From and To Location cannot be undefined`);
}
async #validateStockAvailability(details: SMIDetails) {
if (!details.fromLocation) {
return;
}
const quantityBefore =
(await this.fyo.db.getStockQuantity(
details.item,
details.fromLocation,
undefined,
details.date.toISOString()
)) ?? 0;
const formattedDate = this.fyo.format(details.date, 'Datetime');
if (quantityBefore < details.quantity) {
throw new ValidationError(
[
t`Insufficient Quantity.`,
t`Additional quantity (${
details.quantity - quantityBefore
}) required to make outward transfer of item ${details.item} from ${
details.fromLocation
} on ${formattedDate}`,
].join('\n')
);
}
const quantityAfter = await this.fyo.db.getStockQuantity(
details.item,
details.fromLocation,
details.date.toISOString()
);
if (quantityAfter === null) {
// No future transactions
return;
}
const quantityRemaining = quantityBefore - details.quantity;
if (quantityAfter < quantityRemaining) {
throw new ValidationError(
[
t`Insufficient Quantity.`,
t`Transfer will cause future entries to have negative stock.`,
t`Additional quantity (${
quantityAfter - quantityRemaining
}) required to make outward transfer of item ${details.item} from ${
details.fromLocation
} on ${formattedDate}`,
].join('\n')
);
}
}
2022-10-29 07:07:52 +00:00
}
class StockManagerItem {
2022-10-29 07:07:52 +00:00
/**
* The Stock Manager Item is used to move stock to and from a location. It
2022-10-28 08:04:08 +00:00
* updates the Stock Queue and creates Stock Ledger Entries.
*
* 1. Get existing stock Queue
* 5. Create Stock Ledger Entry
* 7. Insert Stock Ledger Entry
*/
2022-10-29 06:15:23 +00:00
date: Date;
item: string;
rate: Money;
quantity: number;
referenceName: string;
referenceType: string;
2022-10-28 08:04:08 +00:00
fromLocation?: string;
toLocation?: string;
2022-10-29 06:15:23 +00:00
stockLedgerEntries?: StockLedgerEntry[];
2022-10-28 08:04:08 +00:00
2022-10-29 06:15:23 +00:00
fyo: Fyo;
2022-10-28 08:04:08 +00:00
2022-10-29 07:07:52 +00:00
constructor(details: SMIDetails, fyo: Fyo) {
2022-10-28 08:04:08 +00:00
this.date = details.date;
this.item = details.item;
2022-10-29 06:15:23 +00:00
this.rate = details.rate;
2022-10-28 08:04:08 +00:00
this.quantity = details.quantity;
this.fromLocation = details.fromLocation;
this.toLocation = details.toLocation;
this.referenceName = details.referenceName;
this.referenceType = details.referenceType;
2022-10-29 06:15:23 +00:00
this.fyo = fyo;
2022-10-28 08:04:08 +00:00
}
transferStock() {
2022-10-29 06:15:23 +00:00
this.#clear();
this.#moveStockForBothLocations();
2022-10-29 06:15:23 +00:00
}
async sync() {
2022-11-03 10:53:34 +00:00
const sles = [
this.stockLedgerEntries?.filter((s) => s.quantity! <= 0),
this.stockLedgerEntries?.filter((s) => s.quantity! > 0),
]
.flat()
.filter(Boolean);
for (const sle of sles) {
await sle!.sync();
2022-10-29 06:15:23 +00:00
}
}
#moveStockForBothLocations() {
2022-10-28 08:04:08 +00:00
if (this.fromLocation) {
this.#moveStockForSingleLocation(this.fromLocation, true);
2022-10-28 08:04:08 +00:00
}
if (this.toLocation) {
this.#moveStockForSingleLocation(this.toLocation, false);
2022-10-28 08:04:08 +00:00
}
}
#moveStockForSingleLocation(location: string, isOutward: boolean) {
2022-10-28 08:04:08 +00:00
let quantity = this.quantity!;
2022-10-29 06:15:23 +00:00
if (quantity === 0) {
return;
}
2022-10-28 08:04:08 +00:00
if (isOutward) {
quantity = -quantity;
}
2022-10-29 06:15:23 +00:00
// Stock Ledger Entry
const stockLedgerEntry = this.#getStockLedgerEntry(location, quantity);
this.stockLedgerEntries?.push(stockLedgerEntry);
2022-10-28 08:04:08 +00:00
}
#getStockLedgerEntry(location: string, quantity: number) {
2022-10-28 08:04:08 +00:00
return this.fyo.doc.getNewDoc(ModelNameEnum.StockLedgerEntry, {
date: this.date,
item: this.item,
rate: this.rate,
quantity,
location,
referenceName: this.referenceName,
referenceType: this.referenceType,
}) as StockLedgerEntry;
}
2022-10-29 06:15:23 +00:00
#clear() {
this.stockLedgerEntries = [];
}
2022-10-28 08:04:08 +00:00
}