disable customer cancel invoice

This commit is contained in:
Sai Naw Wun
2020-10-28 06:35:47 +06:30
parent bd63e1e161
commit fca5b2e8bf
2 changed files with 5 additions and 3 deletions

View File

@@ -138,7 +138,8 @@ class InvoiceListRow extends StatelessWidget {
//to go invoice info page
Navigator.pop(context);
Navigator.of(context).push(CupertinoPageRoute(
builder: (context) => InvoiceInfo(invoice: invoice)));
builder: (context) =>
InvoiceInfo(invoice: invoice, forCustomer: forCustomer)));
},
)
],