1b4d3af909
fix: parsing err datetime on edit mode todo: koordinasi dengan tim be terkait datetime iso impl edit form feat(treatment-report): add detail view and preview components - Implement treatment report detail page with RBAC checks - Create preview component with accordion layout - Extract mock data to shared sample file - Enhance procedure picker with preview mode - Update schema to make procedure id required - Improve detail row styling and layout feat(treatment-report): update page titles and enhance preview component - Update page titles for treatment report pages to be more descriptive - Implement date formatting in treatment report preview - Add router navigation for edit functionality - Enhance preview component with detailed operation data sections - Add support for tissue notes display in preview
69 lines
1.3 KiB
TypeScript
69 lines
1.3 KiB
TypeScript
export default {
|
|
operatorTeam: {
|
|
dpjpId: -1,
|
|
operatorName: 'Julian Alvarez',
|
|
assistantOperatorName: 'Arda Guller',
|
|
instrumentNurseName: 'Kenan Yildiz',
|
|
surgeryDate: '2025-11-13T14:29:00',
|
|
actionDiagnosis: 'Sprei gratisnya mana',
|
|
},
|
|
procedures: [
|
|
{
|
|
id: -1,
|
|
name: 'Ndase mumet',
|
|
code: 'CX1',
|
|
},
|
|
],
|
|
operationExecution: {
|
|
surgeryType: 'khusus',
|
|
billingCode: 'local',
|
|
operationSystem: 'cito',
|
|
surgeryCleanType: 'kotor',
|
|
surgeryNumber: 'retry',
|
|
birthPlaceNote: 'out3',
|
|
personWeight: 100,
|
|
operationDescription: 'asdsadsa1',
|
|
birthRemark: 'lahir_hidup',
|
|
|
|
operationStartAt: '2025-11-13T14:29:00',
|
|
operationEndAt: '2025-11-13T17:29:00',
|
|
|
|
anesthesiaStartAt: '2025-11-13T11:29:00',
|
|
anesthesiaEndAt: '2025-11-13T18:29:00',
|
|
},
|
|
bloodInput: {
|
|
type: 'tc',
|
|
amount: {
|
|
prc: null,
|
|
wb: null,
|
|
ffp: null,
|
|
tc: 3243324,
|
|
},
|
|
},
|
|
implant: {
|
|
brand: 'Samsung',
|
|
name: 'S.Komedi',
|
|
companionName: 'When ya',
|
|
},
|
|
specimen: {
|
|
destination: 'pa',
|
|
},
|
|
tissueNotes: [
|
|
{
|
|
note: 'Anjai',
|
|
},
|
|
{
|
|
note: 'Ciee Kaget',
|
|
},
|
|
{
|
|
note: 'Baper',
|
|
},
|
|
{
|
|
note: 'Saltink weeh',
|
|
},
|
|
{
|
|
note: 'Kaburrr',
|
|
},
|
|
],
|
|
}
|