From 92bec8c5f570f0256deb63ec89bfe03c79b4a5b1 Mon Sep 17 00:00:00 2001 From: sealday Date: Mon, 11 Mar 2024 21:17:34 +0800 Subject: [PATCH] fix: after refactor path error --- .../plugin-rental/src/server/actions/records-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/@hera/plugin-rental/src/server/actions/records-controller.ts b/packages/plugins/@hera/plugin-rental/src/server/actions/records-controller.ts index ae8085681..a192a824c 100644 --- a/packages/plugins/@hera/plugin-rental/src/server/actions/records-controller.ts +++ b/packages/plugins/@hera/plugin-rental/src/server/actions/records-controller.ts @@ -3,7 +3,7 @@ import { QueryTypes } from 'sequelize'; import { RecordPdfService } from '../services/record-pdf-service'; import { SystemSettingService, SqlLoader } from '@hera/plugin-core'; import { Action, Controller, Inject } from '@nocobase/utils'; -import { Record } from '../interfaces/record'; +import { Record } from '../../interfaces/record'; import { Movement } from '../../utils/constants'; import _ from 'lodash';