Skip to content

Commit

Permalink
Show invoice status as bounced
Browse files Browse the repository at this point in the history
  • Loading branch information
hillelcoren committed May 23, 2024
1 parent 4541698 commit e93173d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class InvoiceStatusColors {
kInvoiceStatusCancelled: _colorTheme!.colorDarkGray,
kInvoiceStatusReversed: _colorTheme!.colorDarkGray,
kInvoiceStatusViewed: _colorTheme!.colorWarning,
kInvoiceStatusBounced: _colorTheme!.colorDanger,
};
}
}
Expand Down Expand Up @@ -52,6 +53,7 @@ class CreditStatusColors {
kCreditStatusPartial: _colorTheme!.colorPrimary,
kCreditStatusApplied: _colorTheme!.colorSuccess,
kCreditStatusViewed: _colorTheme!.colorWarning,
kCreditStatusBounced: _colorTheme!.colorDanger,
};
}
}
Expand All @@ -69,6 +71,7 @@ class PurchaseOrderStatusColors {
kPurchaseOrderStatusReceived: _colorTheme!.colorSuccess,
kPurchaseOrderStatusCancelled: _colorTheme!.colorDanger,
kPurchaseOrderStatusViewed: _colorTheme!.colorWarning,
kPurchaseOrderStatusBounced: _colorTheme!.colorDanger,
};
}
}
Expand Down Expand Up @@ -100,6 +103,7 @@ class QuoteStatusColors {
kQuoteStatusConverted: _colorTheme!.colorSuccess,
kQuoteStatusExpired: _colorTheme!.colorDanger,
kQuoteStatusViewed: _colorTheme!.colorWarning,
kQuoteStatusBounced: _colorTheme!.colorDanger,
};
}
}
Expand Down

0 comments on commit e93173d

Please sign in to comment.