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.

195 lines
4.5 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[]) {
for (const detail of transferDetails) {
await this.#createTransfer(detail);
}
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();
}
}
async #createTransfer(transferDetails: SMTransferDetails) {
const details = this.#getSMIDetails(transferDetails);
const item = new StockManagerItem(details, this.fyo);
await item.transferStock();
this.items.push(item);
}
2022-10-29 07:07:52 +00:00
#getSMIDetails(transferDetails: SMTransferDetails): SMIDetails {
return Object.assign({}, this.details, transferDetails);
}
}
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;
this.#validate();
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() {
for (const sle of this.stockLedgerEntries ?? []) {
await sle.sync();
}
}
#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
#validate() {
this.#validateRate();
2022-10-29 06:15:23 +00:00
this.#validateQuantity();
2022-10-28 08:04:08 +00:00
this.#validateLocation();
}
2022-10-29 06:15:23 +00:00
#validateQuantity() {
if (!this.quantity) {
throw new ValidationError(t`Stock Manager: quantity needs to be set`);
}
if (this.quantity <= 0) {
throw new ValidationError(
t`Stock Manager: quantity (${this.quantity}) has to be greater than zero`
);
}
}
2022-10-28 08:04:08 +00:00
#validateRate() {
if (!this.rate) {
throw new ValidationError(t`Stock Manager: rate needs to be set`);
}
if (this.rate.lte(0)) {
throw new ValidationError(
t`Stock Manager: rate (${this.rate.float}) has to be greater than zero`
);
}
}
#validateLocation() {
if (this.fromLocation) {
return;
}
if (this.toLocation) {
return;
}
throw new ValidationError(
t`Stock Manager: both From and To Location cannot be undefined`
);
}
}