add new param to mih dropdown

This commit is contained in:
2025-02-05 10:14:43 +02:00
parent b71c996d9a
commit 64071ce4e6
14 changed files with 29 additions and 0 deletions

View File

@@ -149,6 +149,7 @@ class _PatientAccessRequestState extends State<PatientAccessRequest> {
],
required: true,
editable: true,
enableSearch: false,
),
),
IconButton(

View File

@@ -138,6 +138,7 @@ class _PatientAccessRequestState extends State<Appointments> {
dropdownOptions: const ["All", "Approved", "Pending", "Declined"],
required: true,
editable: true,
enableSearch: false,
),
),
const SizedBox(height: 10),

View File

@@ -296,6 +296,7 @@ class _TipCalcState extends State<TipCalc> {
dropdownOptions: const ["Yes", "No"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10),
ValueListenableBuilder(

View File

@@ -189,6 +189,7 @@ class _BuildEmployeeListState extends State<BuildEmployeeList> {
dropdownOptions: const ["Doctor", "Assistant"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHDropdownField(
@@ -197,6 +198,7 @@ class _BuildEmployeeListState extends State<BuildEmployeeList> {
dropdownOptions: const ["Full", "Partial"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 15.0),
SizedBox(

View File

@@ -150,6 +150,7 @@ class _BuildUserListState extends State<BuildUserList> {
dropdownOptions: const ["Doctor", "Assistant"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHDropdownField(
@@ -158,6 +159,7 @@ class _BuildUserListState extends State<BuildUserList> {
dropdownOptions: const ["Full", "Partial"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 15.0),
SizedBox(

View File

@@ -369,6 +369,7 @@ class _BusinessAboutState extends State<BusinessAbout> {
dropdownOptions: const ["Doctors Office", "Other"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHTextField(
@@ -431,6 +432,7 @@ class _BusinessAboutState extends State<BusinessAbout> {
dropdownOptions: const ["Doctor", "Assistant"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHTextField(
@@ -475,6 +477,7 @@ class _BusinessAboutState extends State<BusinessAbout> {
dropdownOptions: const ["Full", "Partial"],
required: true,
editable: false,
enableSearch: false,
),
// const SizedBox(height: 15.0),
// const Text(

View File

@@ -364,6 +364,7 @@ class _BusinessDetailsState extends State<BusinessDetails> {
dropdownOptions: const ["Doctors Office", "Other"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
ValueListenableBuilder(
@@ -488,6 +489,7 @@ class _BusinessDetailsState extends State<BusinessDetails> {
dropdownOptions: const ["Doctor", "Assistant"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHTextField(
@@ -532,6 +534,7 @@ class _BusinessDetailsState extends State<BusinessDetails> {
dropdownOptions: const ["Full", "Partial"],
required: true,
editable: false,
enableSearch: false,
),
// const SizedBox(height: 15.0),
// const Text(

View File

@@ -293,6 +293,7 @@ class _ProfileBusinessAddState extends State<ProfileBusinessAdd> {
dropdownOptions: const ["Doctors Office", "Other"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
ValueListenableBuilder(
@@ -416,6 +417,7 @@ class _ProfileBusinessAddState extends State<ProfileBusinessAdd> {
dropdownOptions: const ["Doctor", "Assistant"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHTextField(
@@ -460,6 +462,7 @@ class _ProfileBusinessAddState extends State<ProfileBusinessAdd> {
dropdownOptions: const ["Full", "Partial"],
required: true,
editable: false,
enableSearch: false,
),
const SizedBox(height: 30.0),
SizedBox(

View File

@@ -336,6 +336,7 @@ class _AiChatState extends State<AiChat> {
],
required: true,
editable: true,
enableSearch: false,
),
),
),

View File

@@ -132,6 +132,7 @@ class _LoyaltyCardsState extends State<LoyaltyCards> {
],
required: true,
editable: true,
enableSearch: false,
),
ValueListenableBuilder(
valueListenable: shopName,

View File

@@ -83,6 +83,7 @@ class _ClaimStatementWindowState extends State<ClaimStatementWindow> {
dropdownOptions: const ["Claim", "Statement"],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10),
// Text(
@@ -216,6 +217,7 @@ class _ClaimStatementWindowState extends State<ClaimStatementWindow> {
],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10),
ValueListenableBuilder(
@@ -237,6 +239,7 @@ class _ClaimStatementWindowState extends State<ClaimStatementWindow> {
],
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10),
],

View File

@@ -229,6 +229,7 @@ class _AddPatientState extends State<AddPatient> {
controller: medAidController,
hintText: "Medical Aid",
editable: true,
enableSearch: false,
// onSelect: (_) {
// isRequired();
// },
@@ -248,6 +249,7 @@ class _AddPatientState extends State<AddPatient> {
hintText: "Main Member",
editable: value,
required: value,
enableSearch: false,
dropdownOptions: const ["Yes", "No"],
),
const SizedBox(height: 10.0),

View File

@@ -468,6 +468,7 @@ class _EditPatientState extends State<EditPatient> {
// },
editable: true,
required: true,
enableSearch: false,
dropdownOptions: const ["Yes", "No"],
),
ValueListenableBuilder(
@@ -483,6 +484,7 @@ class _EditPatientState extends State<EditPatient> {
hintText: "Main Member.",
editable: value,
required: value,
enableSearch: false,
dropdownOptions: const ["Yes", "No"],
),
const SizedBox(height: 10.0),

View File

@@ -384,6 +384,7 @@ class _PrescripInputState extends State<PrescripInput> {
dropdownOptions: numberOptions,
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHDropdownField(
@@ -392,6 +393,7 @@ class _PrescripInputState extends State<PrescripInput> {
dropdownOptions: numberOptions,
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHDropdownField(
@@ -400,6 +402,7 @@ class _PrescripInputState extends State<PrescripInput> {
dropdownOptions: numberOptions,
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 10.0),
MIHDropdownField(
@@ -408,6 +411,7 @@ class _PrescripInputState extends State<PrescripInput> {
dropdownOptions: numberOptions,
required: true,
editable: true,
enableSearch: false,
),
const SizedBox(height: 15.0),
SizedBox(