feat: add Auto Check MH Payment toggle with weekly schedule

Adds a toggle behind the Go button on the Payments page to automatically run the MH batch payment check on a user-selected day of week and hour. Default is off.

- Schema: added autoMhCheckEnabled, autoMhCheckDayOfWeek, autoMhCheckHour to User model
- Backend: new mhBatchPaymentService (shared logic), GET/PUT /auto-mh-check-setting routes, hourly cron job that fires on matching day+hour
- Frontend: toggle + day select (Mon–Sun) + time select (hourly) that persist immediately to DB

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-26 22:58:36 -04:00
parent 27d9132820
commit fc3e8c0e25
310 changed files with 2821 additions and 2015 deletions

File diff suppressed because one or more lines are too long

View File

@@ -127,7 +127,10 @@ exports.Prisma.UserScalarFieldEnum = {
autoBackupEnabled: 'autoBackupEnabled',
autoBackupHour: 'autoBackupHour',
usbBackupEnabled: 'usbBackupEnabled',
usbBackupHour: 'usbBackupHour'
usbBackupHour: 'usbBackupHour',
autoMhCheckEnabled: 'autoMhCheckEnabled',
autoMhCheckDayOfWeek: 'autoMhCheckDayOfWeek',
autoMhCheckHour: 'autoMhCheckHour'
};
exports.Prisma.PatientScalarFieldEnum = {

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
{
"name": "prisma-client-255925208cd2ae4e7680931248b79c62d4ac5e35e42b5e687d7201ee1e27106d",
"name": "prisma-client-210cfd1f3d7388620d3c172d9abdf5f3d200db6f7d9237d98c6c0804e5262885",
"main": "index.js",
"types": "index.d.ts",
"browser": "default.js",

View File

@@ -26,6 +26,9 @@ model User {
autoBackupHour Int @default(20)
usbBackupEnabled Boolean @default(false)
usbBackupHour Int @default(21)
autoMhCheckEnabled Boolean @default(false)
autoMhCheckDayOfWeek Int @default(1)
autoMhCheckHour Int @default(13)
patients Patient[]
appointments Appointment[]
staff Staff[]