mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
c10edc7132
Also allow changing a print template type, necessary to create a custom print template for this.
103 lines
3.7 KiB
TypeScript
103 lines
3.7 KiB
TypeScript
import { ModelMap } from 'fyo/model/types';
|
|
import { Account } from './baseModels/Account/Account';
|
|
import { AccountingLedgerEntry } from './baseModels/AccountingLedgerEntry/AccountingLedgerEntry';
|
|
import { AccountingSettings } from './baseModels/AccountingSettings/AccountingSettings';
|
|
import { Address } from './baseModels/Address/Address';
|
|
import { Defaults } from './baseModels/Defaults/Defaults';
|
|
import { Item } from './baseModels/Item/Item';
|
|
import { JournalEntry } from './baseModels/JournalEntry/JournalEntry';
|
|
import { JournalEntryAccount } from './baseModels/JournalEntryAccount/JournalEntryAccount';
|
|
import { Misc } from './baseModels/Misc';
|
|
import { Party } from './baseModels/Party/Party';
|
|
import { Payment } from './baseModels/Payment/Payment';
|
|
import { PaymentFor } from './baseModels/PaymentFor/PaymentFor';
|
|
import { PriceList } from './baseModels/PriceList/PriceList';
|
|
import { PriceListItem } from './baseModels/PriceList/PriceListItem';
|
|
import { PrintSettings } from './baseModels/PrintSettings/PrintSettings';
|
|
import { PrintTemplate } from './baseModels/PrintTemplate';
|
|
import { PurchaseInvoice } from './baseModels/PurchaseInvoice/PurchaseInvoice';
|
|
import { PurchaseInvoiceItem } from './baseModels/PurchaseInvoiceItem/PurchaseInvoiceItem';
|
|
import { SalesInvoice } from './baseModels/SalesInvoice/SalesInvoice';
|
|
import { SalesInvoiceItem } from './baseModels/SalesInvoiceItem/SalesInvoiceItem';
|
|
import { SalesQuote } from './baseModels/SalesQuote/SalesQuote';
|
|
import { SalesQuoteItem } from './baseModels/SalesQuoteItem/SalesQuoteItem';
|
|
import { SetupWizard } from './baseModels/SetupWizard/SetupWizard';
|
|
import { Tax } from './baseModels/Tax/Tax';
|
|
import { TaxSummary } from './baseModels/TaxSummary/TaxSummary';
|
|
import { Batch } from './inventory/Batch';
|
|
import { InventorySettings } from './inventory/InventorySettings';
|
|
import { Location } from './inventory/Location';
|
|
import { PurchaseReceipt } from './inventory/PurchaseReceipt';
|
|
import { PurchaseReceiptItem } from './inventory/PurchaseReceiptItem';
|
|
import { SerialNumber } from './inventory/SerialNumber';
|
|
import { Shipment } from './inventory/Shipment';
|
|
import { ShipmentItem } from './inventory/ShipmentItem';
|
|
import { StockLedgerEntry } from './inventory/StockLedgerEntry';
|
|
import { StockMovement } from './inventory/StockMovement';
|
|
import { StockMovementItem } from './inventory/StockMovementItem';
|
|
import { ClosingAmounts } from './inventory/Point of Sale/ClosingAmounts';
|
|
import { ClosingCash } from './inventory/Point of Sale/ClosingCash';
|
|
import { OpeningAmounts } from './inventory/Point of Sale/OpeningAmounts';
|
|
import { OpeningCash } from './inventory/Point of Sale/OpeningCash';
|
|
import { POSSettings } from './inventory/Point of Sale/POSSettings';
|
|
import { POSShift } from './inventory/Point of Sale/POSShift';
|
|
|
|
export const models = {
|
|
Account,
|
|
AccountingLedgerEntry,
|
|
AccountingSettings,
|
|
Address,
|
|
Batch,
|
|
Defaults,
|
|
Item,
|
|
JournalEntry,
|
|
JournalEntryAccount,
|
|
Misc,
|
|
Party,
|
|
Payment,
|
|
PaymentFor,
|
|
PrintSettings,
|
|
PriceList,
|
|
PriceListItem,
|
|
PurchaseInvoice,
|
|
PurchaseInvoiceItem,
|
|
SalesInvoice,
|
|
SalesInvoiceItem,
|
|
SalesQuote,
|
|
SalesQuoteItem,
|
|
SerialNumber,
|
|
SetupWizard,
|
|
PrintTemplate,
|
|
Tax,
|
|
TaxSummary,
|
|
// Inventory Models
|
|
InventorySettings,
|
|
StockMovement,
|
|
StockMovementItem,
|
|
StockLedgerEntry,
|
|
Location,
|
|
Shipment,
|
|
ShipmentItem,
|
|
PurchaseReceipt,
|
|
PurchaseReceiptItem,
|
|
// POS Models
|
|
ClosingAmounts,
|
|
ClosingCash,
|
|
OpeningAmounts,
|
|
OpeningCash,
|
|
POSSettings,
|
|
POSShift,
|
|
} as ModelMap;
|
|
|
|
export async function getRegionalModels(
|
|
countryCode: string
|
|
): Promise<ModelMap> {
|
|
if (countryCode !== 'in') {
|
|
return {};
|
|
}
|
|
|
|
const { Address } = await import('./regionalModels/in/Address');
|
|
const { Party } = await import('./regionalModels/in/Party');
|
|
return { Address, Party };
|
|
}
|