Commit f0e153b8 authored by Jasa Digital's avatar Jasa Digital

harga coret fav menu fixed

parent c09d3bb5
...@@ -175,7 +175,7 @@ class FavGridMenu extends StatelessWidget { ...@@ -175,7 +175,7 @@ class FavGridMenu extends StatelessWidget {
categoryFavAfterSelect[i].originalPrice)) categoryFavAfterSelect[i].originalPrice))
? defaultText( ? defaultText(
context, context,
'Rp ${formatNumber().format(amountParseToInt(categoryFavAfterSelect[i].price))}', 'Rp ${formatNumber().format(amountParseToInt(categoryFavAfterSelect[i].originalPrice))}',
maxLines: 3, maxLines: 3,
overFlow: TextOverflow.ellipsis, overFlow: TextOverflow.ellipsis,
style: menuPriceGridFav( style: menuPriceGridFav(
...@@ -193,7 +193,7 @@ class FavGridMenu extends StatelessWidget { ...@@ -193,7 +193,7 @@ class FavGridMenu extends StatelessWidget {
: const SizedBox(), : const SizedBox(),
defaultText( defaultText(
context, context,
'Rp ${formatNumber().format(amountParseToInt(categoryFavAfterSelect[i].originalPrice))}', 'Rp ${formatNumber().format(amountParseToInt(categoryFavAfterSelect[i].price))}',
maxLines: 3, maxLines: 3,
overFlow: TextOverflow.ellipsis, overFlow: TextOverflow.ellipsis,
style: menuPriceGridFav(), style: menuPriceGridFav(),
......
...@@ -804,7 +804,9 @@ class CoreBill extends StatelessWidget { ...@@ -804,7 +804,9 @@ class CoreBill extends StatelessWidget {
), ),
SizedBox( SizedBox(
height: (dataBill[0].tableStatus == tableStatusOpen) height: (dataBill[0].tableStatus == tableStatusOpen)
? 180 ? (dataBill[0].isPromotionAllow == "1" &&
!isPromotionActive &&
memberinfo.id == '') ? 220 : 180
: 120, : 120,
) )
], ],
......
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