Merge branch 'develop' into MED-49

This commit is contained in:
Danel Kungla
2025-09-30 18:07:07 +03:00
6 changed files with 14 additions and 5 deletions

View File

@@ -34,6 +34,7 @@ MEDIPOST_PASSWORD=SRB48HZMV
MEDIPOST_RECIPIENT=trvurgtst
MEDIPOST_MESSAGE_SENDER=trvurgtst
MEDIPOST_ENABLE_DISPATCH_ON_MONTONIO_CALLBACK=true
MEDIPOST_ENABLE_DELETE_RESPONSE_PRIVATE_MESSAGE_ON_READ=false
#MEDIPOST_URL=https://medipost2.medisoft.ee:8443/Medipost/MedipostServlet
#MEDIPOST_USER=medreport
@@ -43,6 +44,7 @@ MEDIPOST_ENABLE_DISPATCH_ON_MONTONIO_CALLBACK=true
#MEDIPOST_ENABLE_DISPATCH_ON_MONTONIO_CALLBACK=false
# MEDUSA
COMPANY_BENEFITS_PAYMENT_SECRET_KEY=NzcwMzE2NmEtOThiMS0xMWYwLWI4NjYtMDMwZDQzMjFhMjExCg==
MEDUSA_BACKEND_URL=http://localhost:9000
MEDUSA_BACKEND_PUBLIC_URL=http://localhost:9000

View File

@@ -2,8 +2,8 @@
import { zodResolver } from '@hookform/resolvers/zod';
import { useForm } from 'react-hook-form';
import { Trans } from 'react-i18next';
import { Trans } from '@kit/ui/trans';
import { useRevalidatePersonalAccountDataQuery } from '@kit/accounts/hooks/use-personal-account-data';
import type { AccountWithParams } from '@kit/accounts/types/accounts';
import { Button } from '@kit/ui/button';

View File

@@ -2,8 +2,8 @@
import { zodResolver } from '@hookform/resolvers/zod';
import { useForm } from 'react-hook-form';
import { Trans } from 'react-i18next';
import { Trans } from '@kit/ui/trans';
import { useRevalidatePersonalAccountDataQuery } from '@kit/accounts/hooks/use-personal-account-data';
import type { AccountWithParams } from '@kit/accounts/types/accounts';
import { Button } from '@kit/ui/button';

View File

@@ -63,13 +63,13 @@ export const getAccountHealthDetailsFields = (
return [
{
title: 'teams:healthDetails.women',
value: `${femalePercentage}% (${numberOfFemaleMembers})`,
value: `${femalePercentage.toFixed(0)}% (${numberOfFemaleMembers})`,
Icon: User,
iconBg: 'bg-success',
},
{
title: 'teams:healthDetails.men',
value: `${malePercentage}% (${numberOfMaleMembers})`,
value: `${malePercentage.toFixed(0)}% (${numberOfMaleMembers})`,
Icon: User,
iconBg: 'bg-success',
},

View File

@@ -43,7 +43,9 @@ const USER = process.env.MEDIPOST_USER!;
const PASSWORD = process.env.MEDIPOST_PASSWORD!;
const RECIPIENT = process.env.MEDIPOST_RECIPIENT!;
const IS_ENABLED_DELETE_PRIVATE_MESSAGE = false as boolean;
const IS_ENABLED_DELETE_PRIVATE_MESSAGE =
process.env.MEDIPOST_ENABLE_DELETE_RESPONSE_PRIVATE_MESSAGE_ON_READ ===
'true';
export async function getLatestPrivateMessageListItem({
excludedMessageIds,
@@ -436,6 +438,9 @@ export async function readPrivateMessageResponse({
medusaOrderId,
orderStatus: 'PARTIAL_ANALYSIS_RESPONSE',
});
if (IS_ENABLED_DELETE_PRIVATE_MESSAGE) {
await deletePrivateMessage(privateMessageId);
}
hasAnalysisResponse = true;
hasPartialAnalysisResponse = true;
} else if (status.isCompleted) {

View File

@@ -25,6 +25,7 @@ export const retrieveOrder = async (id: string, allowCache = true) => {
headers,
next,
...(allowCache ? { cache: 'force-cache' } : {}),
credentials: 'include',
})
.then(({ order }) => order)
.catch((err) => medusaError(err));
@@ -55,6 +56,7 @@ export const listOrders = async (
},
headers,
next,
credentials: 'include',
})
.then(({ orders }) => orders)
.catch((err) => medusaError(err));