fix : edit or delete in list item expanded when in state waiting for buyer conformation

This commit is contained in:
2025-07-15 09:38:08 +03:30
parent 3bc87340d4
commit 699d18977c

View File

@@ -280,7 +280,9 @@ class SalesInProvincePage extends GetView<SalesInProvinceLogic> {
value: item.systemRegistrationCode == true ? "ارسال شده" : "ارسال نشده", value: item.systemRegistrationCode == true ? "ارسال شده" : "ارسال نشده",
), ),
Row( Visibility(
visible: item.registrationCode == null,
child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
spacing: 16.w, spacing: 16.w,
children: [ children: [
@@ -318,6 +320,7 @@ class SalesInProvincePage extends GetView<SalesInProvinceLogic> {
), ),
], ],
), ),
),
], ],
), ),
); );