|
|
|
|
@ -110,42 +110,42 @@ class NewPrescriptionsPage extends StatelessWidget {
|
|
|
|
|
height: 10,
|
|
|
|
|
),
|
|
|
|
|
CustomRow(
|
|
|
|
|
label: "Doctor Name :",
|
|
|
|
|
label: TranslationBase.of(context).doctorName + ': ', //"Doctor Name :",
|
|
|
|
|
value: model
|
|
|
|
|
.prescriptionListNew[index].doctorName,
|
|
|
|
|
),
|
|
|
|
|
CustomRow(
|
|
|
|
|
label: "Order Type Description :",
|
|
|
|
|
label: TranslationBase.of(context).orderTypeDescription + ': ',//"Order Type Description :",
|
|
|
|
|
value: model.prescriptionListNew[index]
|
|
|
|
|
.orderTypeDescription,
|
|
|
|
|
),
|
|
|
|
|
CustomRow(
|
|
|
|
|
label: "status :",
|
|
|
|
|
label: TranslationBase.of(context).status + ': ',
|
|
|
|
|
value:
|
|
|
|
|
model.prescriptionListNew[index].status,
|
|
|
|
|
),
|
|
|
|
|
CustomRow(
|
|
|
|
|
label: "indication :",
|
|
|
|
|
label: TranslationBase.of(context).indication + ': ', //"indication :",
|
|
|
|
|
value: model
|
|
|
|
|
.prescriptionListNew[index].indication,
|
|
|
|
|
),
|
|
|
|
|
CustomRow(
|
|
|
|
|
label: "doseDetail :",
|
|
|
|
|
label: TranslationBase.of(context).doseDetails + ': ', //"doseDetail :",
|
|
|
|
|
value: model
|
|
|
|
|
.prescriptionListNew[index].doseDetail,
|
|
|
|
|
),
|
|
|
|
|
CustomRow(
|
|
|
|
|
label: "quantity :",
|
|
|
|
|
label: TranslationBase.of(context).quantity + ': ',//"quantity :",
|
|
|
|
|
value: model
|
|
|
|
|
.prescriptionListNew[index].quantity
|
|
|
|
|
.toString(),
|
|
|
|
|
),CustomRow(
|
|
|
|
|
label: "start Date :",
|
|
|
|
|
label: TranslationBase.of(context).startDate + ': ', //"start Date :",
|
|
|
|
|
value: model
|
|
|
|
|
.prescriptionListNew[index].startDate
|
|
|
|
|
.toString(),
|
|
|
|
|
),CustomRow(
|
|
|
|
|
label: "stop Date :",
|
|
|
|
|
label: TranslationBase.of(context).stopDate + ': ',//"stop Date :",
|
|
|
|
|
value: model
|
|
|
|
|
.prescriptionListNew[index].stopDate
|
|
|
|
|
.toString(),
|
|
|
|
|
@ -154,7 +154,7 @@ class NewPrescriptionsPage extends StatelessWidget {
|
|
|
|
|
.prescriptionListNew[index].remarks != null&& model
|
|
|
|
|
.prescriptionListNew[index].remarks!= "")
|
|
|
|
|
CustomRow(
|
|
|
|
|
label: "Remark :",
|
|
|
|
|
label: TranslationBase.of(context).remarks + ': ',//"Remark :",
|
|
|
|
|
value: model
|
|
|
|
|
.prescriptionListNew[index].remarks
|
|
|
|
|
.toString(),
|
|
|
|
|
|