Skip to content

Commit

Permalink
fix: None
Browse files Browse the repository at this point in the history
refactor: None
feat: TailPOS Language Translation
  • Loading branch information
jiloysss authored and jiloysss committed Jul 5, 2019
1 parent da4d033 commit 53f635e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/stories/components/TotalLineComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const TotalLineComponent = props => (
</View>
<View style={styles.viewInner}>
<Text style={styles.text}>
{strings.Discounts}{" "}
{strings.Discounts}{" "}
{props.receipt
? props.receipt.discountType === "percentage"
? props.receipt.discountValue > 0
Expand Down Expand Up @@ -61,8 +61,9 @@ const TotalLineComponent = props => (
</Text>
</View>
<View style={styles.viewInner}>
<Text style={[styles.text, styles.totalText]}>{strings.TotalPayment}</Text>

<Text style={[styles.text, styles.totalText]}>
{strings.TotalPayment}
</Text>

<Text>
{new MoneyCurrency(props.currency ? props.currency : "PHP").moneyFormat(
Expand Down

0 comments on commit 53f635e

Please sign in to comment.