fix: the enum of recuuring period for invoice

This commit is contained in:
mahyargdz
2025-05-31 11:26:49 +03:30
parent f7cd91d67f
commit 74eede394e
2 changed files with 6 additions and 6 deletions
@@ -902,7 +902,7 @@ export class InvoicesService {
case RecurringPeriodEnum.QUARTERLY:
delayMs = dayjs().add(3, "month").subtract(7, "day").diff(dayjs());
break;
case RecurringPeriodEnum.BIANNUALLY:
case RecurringPeriodEnum.SEMIANNUALLY:
delayMs = dayjs().add(6, "month").subtract(7, "day").diff(dayjs());
break;
case RecurringPeriodEnum.ANNUALLY: