2022-11-21 06:35:05 +00:00
|
|
|
import { Fyo } from 'fyo';
|
2022-10-06 08:50:13 +00:00
|
|
|
import {
|
2022-11-21 06:35:05 +00:00
|
|
|
Action,
|
2022-10-06 08:50:13 +00:00
|
|
|
DefaultMap,
|
|
|
|
FiltersMap,
|
|
|
|
FormulaMap,
|
2022-11-30 14:46:20 +00:00
|
|
|
ListViewSettings,
|
2022-10-06 08:50:13 +00:00
|
|
|
} from 'fyo/model/types';
|
2023-01-31 08:06:03 +00:00
|
|
|
import { ValidationError } from 'fyo/utils/errors';
|
|
|
|
import {
|
|
|
|
addItem,
|
|
|
|
getDocStatusListColumn,
|
|
|
|
getLedgerLinkAction,
|
|
|
|
} from 'models/helpers';
|
2022-11-18 17:31:50 +00:00
|
|
|
import { LedgerPosting } from 'models/Transactional/LedgerPosting';
|
2022-10-05 14:37:17 +00:00
|
|
|
import { ModelNameEnum } from 'models/types';
|
|
|
|
import { Money } from 'pesa';
|
2023-02-27 13:09:18 +00:00
|
|
|
import { validateBatchNumber } from './helpers';
|
2022-10-05 14:37:17 +00:00
|
|
|
import { StockMovementItem } from './StockMovementItem';
|
2022-11-18 17:31:50 +00:00
|
|
|
import { Transfer } from './Transfer';
|
2022-10-05 14:37:17 +00:00
|
|
|
import { MovementType } from './types';
|
|
|
|
|
2022-11-18 17:31:50 +00:00
|
|
|
export class StockMovement extends Transfer {
|
2022-10-05 14:37:17 +00:00
|
|
|
name?: string;
|
|
|
|
date?: Date;
|
|
|
|
numberSeries?: string;
|
|
|
|
movementType?: MovementType;
|
2022-10-06 08:50:13 +00:00
|
|
|
items?: StockMovementItem[];
|
2022-10-05 14:37:17 +00:00
|
|
|
amount?: Money;
|
|
|
|
|
2022-11-18 17:31:50 +00:00
|
|
|
override get isTransactional(): boolean {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
override async getPosting(): Promise<LedgerPosting | null> {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-10-06 08:50:13 +00:00
|
|
|
formulas: FormulaMap = {
|
|
|
|
amount: {
|
|
|
|
formula: () => {
|
|
|
|
return this.items?.reduce(
|
|
|
|
(acc, item) => acc.add(item.amount ?? 0),
|
|
|
|
this.fyo.pesa(0)
|
|
|
|
);
|
|
|
|
},
|
|
|
|
dependsOn: ['items'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2023-01-31 08:06:03 +00:00
|
|
|
async validate() {
|
|
|
|
await super.validate();
|
2023-02-27 13:09:18 +00:00
|
|
|
this.validateManufacture();
|
|
|
|
await validateBatchNumber(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
validateManufacture() {
|
2023-01-31 08:06:03 +00:00
|
|
|
if (this.movementType !== MovementType.Manufacture) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const hasFrom = this.items?.findIndex((f) => f.fromLocation) !== -1;
|
|
|
|
const hasTo = this.items?.findIndex((f) => f.toLocation) !== -1;
|
|
|
|
|
|
|
|
if (!hasFrom) {
|
|
|
|
throw new ValidationError(this.fyo.t`Item with From location not found`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!hasTo) {
|
|
|
|
throw new ValidationError(this.fyo.t`Item with To location not found`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-05 14:37:17 +00:00
|
|
|
static filters: FiltersMap = {
|
|
|
|
numberSeries: () => ({ referenceType: ModelNameEnum.StockMovement }),
|
|
|
|
};
|
|
|
|
|
|
|
|
static defaults: DefaultMap = {
|
|
|
|
date: () => new Date(),
|
|
|
|
};
|
|
|
|
|
2022-11-30 14:46:20 +00:00
|
|
|
static getListViewSettings(fyo: Fyo): ListViewSettings {
|
2022-11-16 08:35:38 +00:00
|
|
|
return {
|
2023-02-21 05:34:35 +00:00
|
|
|
formRoute: ({ name }) => `/edit/StockMovement/${name}`,
|
2022-11-30 14:46:20 +00:00
|
|
|
columns: [
|
|
|
|
'name',
|
|
|
|
getDocStatusListColumn(),
|
|
|
|
'date',
|
|
|
|
{
|
|
|
|
label: fyo.t`Movement Type`,
|
|
|
|
fieldname: 'movementType',
|
|
|
|
fieldtype: 'Select',
|
|
|
|
size: 'small',
|
|
|
|
render(doc) {
|
|
|
|
const movementType = doc.movementType as MovementType;
|
|
|
|
const label =
|
|
|
|
{
|
|
|
|
[MovementType.MaterialIssue]: fyo.t`Material Issue`,
|
|
|
|
[MovementType.MaterialReceipt]: fyo.t`Material Receipt`,
|
|
|
|
[MovementType.MaterialTransfer]: fyo.t`Material Transfer`,
|
2023-01-31 08:06:03 +00:00
|
|
|
[MovementType.Manufacture]: fyo.t`Manufacture`,
|
2022-11-30 14:46:20 +00:00
|
|
|
}[movementType] ?? '';
|
|
|
|
|
|
|
|
return {
|
|
|
|
template: `<span>${label}</span>`,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2022-11-16 08:35:38 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-11-02 14:56:37 +00:00
|
|
|
_getTransferDetails() {
|
|
|
|
return (this.items ?? []).map((row) => ({
|
|
|
|
item: row.item!,
|
|
|
|
rate: row.rate!,
|
|
|
|
quantity: row.quantity!,
|
2023-01-13 13:16:52 +00:00
|
|
|
batchNumber: row.batchNumber!,
|
2022-11-02 14:56:37 +00:00
|
|
|
fromLocation: row.fromLocation,
|
|
|
|
toLocation: row.toLocation,
|
|
|
|
}));
|
2022-10-29 06:15:23 +00:00
|
|
|
}
|
2022-11-21 06:35:05 +00:00
|
|
|
|
|
|
|
static getActions(fyo: Fyo): Action[] {
|
|
|
|
return [getLedgerLinkAction(fyo, true)];
|
|
|
|
}
|
2023-01-16 09:38:02 +00:00
|
|
|
|
|
|
|
async addItem(name: string) {
|
|
|
|
return await addItem(name, this);
|
|
|
|
}
|
2022-10-05 14:37:17 +00:00
|
|
|
}
|