Refactor tax record model: moved taxRecord schema to finance directory and updated import path in models.js

This commit is contained in:
Tom Butcher 2026-06-21 22:23:03 +01:00
parent 4bfc7fae2a
commit 3481b07a55
2 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ import { fileModel } from './management/file.schema.js';
import { courierServiceModel } from './management/courierservice.schema.js';
import { courierModel } from './management/courier.schema.js';
import { taxRateModel } from './management/taxrate.schema.js';
import { taxRecordModel } from './management/taxrecord.schema.js';
import { taxRecordModel } from './finance/taxrecord.schema.js';
import { shipmentModel } from './inventory/shipment.schema.js';
import { invoiceModel } from './finance/invoice.schema.js';
import { clientModel } from './sales/client.schema.js';