Browse Source

MNT currency sign in Wallet Statement

pull/1/head
Amrit Giri 4 years ago
parent
commit
ba7db30710
  1. 6
      GME Remit/Modules/RemittanceModules/InboundModules/InboundReceipt/User Interface/View/InboundReceipt.storyboard
  2. 2
      GME Remit/Modules/WalletStatement/User Interface/View/Cell/WalletStatementTableViewCell.swift

6
GME Remit/Modules/RemittanceModules/InboundModules/InboundReceipt/User Interface/View/InboundReceipt.storyboard

@ -416,7 +416,7 @@
<color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="11,000 MNT" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="tKO-5l-kOy">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="11,000" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="tKO-5l-kOy">
<rect key="frame" x="113" y="0.0" width="216" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/>
@ -445,7 +445,7 @@
<color key="textColor" name="ThemeText"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="10,000 MNT" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="4zF-Gh-kae">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="10,000" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" translatesAutoresizingMaskIntoConstraints="NO" id="4zF-Gh-kae">
<rect key="frame" x="75.5" y="0.0" width="253.5" height="50"/>
<fontDescription key="fontDescription" name="SanFranciscoText-Bold" family="San Francisco Text" pointSize="14"/>
<color key="textColor" name="ThemeText"/>
@ -594,7 +594,7 @@
<resources>
<image name="flag_cambodia" width="512" height="512"/>
<image name="ibk" width="100" height="66"/>
<image name="ic_gme_logo" width="40" height="40"/>
<image name="ic_gme_logo" width="120" height="120"/>
<image name="ic_recipient_bg" width="355" height="226"/>
<namedColor name="ThemeMainBackground">
<color red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>

2
GME Remit/Modules/WalletStatement/User Interface/View/Cell/WalletStatementTableViewCell.swift

@ -36,7 +36,7 @@ class WalletStatementTableViewCell: UITableViewCell {
if (model?.particular ?? "").lowercased() == "Balance Brought Forward".lowercased() {
return .closingAmount
}
return (model?.walletOut ?? "") == "0" ? .walletIn : .walletOut
return (model?.walletOut ?? "") == "0" ? .walletIn : .walletOut
}
func setup() {

Loading…
Cancel
Save