Commit 33a2e00c authored by Jasa Digital's avatar Jasa Digital

change state

parent 33466091
...@@ -534,7 +534,8 @@ class CoreBill extends StatelessWidget { ...@@ -534,7 +534,8 @@ class CoreBill extends StatelessWidget {
height: 24, height: 24,
), ),
(dataBill[0].isFeedBack == false && (dataBill[0].isFeedBack == false &&
dataBill[0].tableStatus != tableStatusOpen) (dataBill[0].tableStatus != tableStatusOpen ||
dataBill[0].state == orderStateDone))
? Column( ? Column(
children: [ children: [
GestureDetector( GestureDetector(
...@@ -990,7 +991,8 @@ class CoreBill extends StatelessWidget { ...@@ -990,7 +991,8 @@ class CoreBill extends StatelessWidget {
) )
: const SizedBox(), : const SizedBox(),
(!getIsDeliveryPickup()) (!getIsDeliveryPickup())
? (dataBill[0].tableStatus == tableStatusOpen) ? (dataBill[0].tableStatus == tableStatusOpen &&
dataBill[0].state != orderStateDone)
? Column( ? Column(
children: [ children: [
const SizedBox( const SizedBox(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment