improvement: new prosthesis type data structure implemented and finally working!

This commit is contained in:
2026-09-01 21:03:04 +03:30
parent dc71c73ced
commit a3c14a18c1
51 changed files with 3306 additions and 1117 deletions

View File

@@ -27,6 +27,8 @@ export type CaseSheetLabels = {
toothChart: string;
connected: string;
teeth: string;
archUpper: string;
archLower: string;
comments: string;
noComments: string;
};
@@ -193,7 +195,7 @@ export function CaseSheetPrintLayout({
) : null}
</div>
<p style={{ margin: '4px 0 0', fontSize: 11, color: '#475569' }}>
{labels.teeth}: {formatToothList(row.teeth)}
{labels.teeth}: {formatToothList(row.teeth, { UA: labels.archUpper, LA: labels.archLower })}
</p>
</li>
);