diff --git a/pc4mobx/hrmSalary/stores/custom-stores/index.js b/pc4mobx/hrmSalary/stores/custom-stores/index.js index e69de29b..7be35b6b 100644 --- a/pc4mobx/hrmSalary/stores/custom-stores/index.js +++ b/pc4mobx/hrmSalary/stores/custom-stores/index.js @@ -0,0 +1,2 @@ +module.exports = { +}; diff --git a/pc4mobx/hrmSalary/stores/index.js b/pc4mobx/hrmSalary/stores/index.js index c9590ab3..56eee32a 100644 --- a/pc4mobx/hrmSalary/stores/index.js +++ b/pc4mobx/hrmSalary/stores/index.js @@ -19,6 +19,7 @@ import { StandingBookStore } from "./StandingBook"; import { PayrollFilesStore } from "./payrollFiles"; import { SpecialAddStore } from "./specialAdd"; import { ExternalPersonManageStore } from "./externalPersonManage"; +import CustomModule from "./custom-stores"; module.exports = { baseFormStore: new BaseFormStore(), @@ -41,5 +42,6 @@ module.exports = { standingBookStore: new StandingBookStore(), payrollFilesStore: new PayrollFilesStore(), specialAddStore: new SpecialAddStore(), - externalPersonManageStore: new ExternalPersonManageStore() + externalPersonManageStore: new ExternalPersonManageStore(), + ...CustomModule };