Commit 7604f2abbb3b6bd94d9395b4dacaaf5c1eceb71f

Authored by liushiyu
1 parent 07d4035a

0.1.4

CNLivePayCostModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLivePayCostModule'
11   - s.version = '0.1.3'
  11 + s.version = '0.1.4'
12 12 s.summary = 'A short description of CNLivePayCostModule.'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLivePayCostModule/Classes/Core/CNLivePayCostNetwork.m
... ... @@ -119,9 +119,9 @@ static NSString *const CNLiveWillBecomeActivePaycostForSHShopNotification = @"CN
119 119 @"user_id":CNUserShareModel.uid?CNUserShareModel.uid:@"",
120 120 @"out_trade_no":orderId,
121 121 @"body":desc,
122   - @"total_fee":[NSNumber numberWithInt:price.floatValue*100],
123   - @"coupon_fee":[NSNumber numberWithInt:coupon_fee.floatValue*100],
124   - @"balance_fee":[NSNumber numberWithInt:balance_fee.floatValue*100],
  122 + @"total_fee":[NSNumber numberWithInt:price.floatValue],
  123 + @"coupon_fee":[NSNumber numberWithInt:coupon_fee.floatValue],
  124 + @"balance_fee":[NSNumber numberWithInt:balance_fee.floatValue],
125 125 @"notify_url":notifyUrls,
126 126 @"page_url":@"",
127 127 @"type":@"3",
... ...