提交 ad1cacac25e134b8fed3e6efc468743ed626a77f

作者 pangy
1 个父辈 1146fe38

预扣预缴 调整

@@ -87,13 +87,16 @@ Page({ @@ -87,13 +87,16 @@ Page({
87 var item = items[i] 87 var item = items[i]
88 var method 88 var method
89 if (item.taxation_method == '0101'){ 89 if (item.taxation_method == '0101'){
90 - if (item.sub_taxation_method && Sub_taxation_method[item.sub_taxation_method]){  
91 - method = '工资薪金-' + Sub_taxation_method[item.sub_taxation_method]  
92 - } 90 + method = '工资薪金'
  91 + // if (item.sub_taxation_method && Sub_taxation_method[item.sub_taxation_method]){
  92 + // method = '工资薪金-' + Sub_taxation_method[item.sub_taxation_method]
  93 + // }
93 } else if (item.taxation_method == '0401') { 94 } else if (item.taxation_method == '0401') {
94 method = '劳务报酬' 95 method = '劳务报酬'
95 - }  
96 - item.method 96 + } else if (item.taxation_method == '0103') {
  97 + method = '全年一次性奖金'
  98 + }
  99 + item.method = method
97 } 100 }
98 return items; 101 return items;
99 }, 102 },
@@ -20,15 +20,16 @@ @@ -20,15 +20,16 @@
20 <view style='width:100%; font-family: PingFang-SC-Medium;font-size: 14px;color: #999999;letter-spacing: 0;text-align: center;'>还没有企业为您申报个税哦~</view> 20 <view style='width:100%; font-family: PingFang-SC-Medium;font-size: 14px;color: #999999;letter-spacing: 0;text-align: center;'>还没有企业为您申报个税哦~</view>
21 </view> 21 </view>
22 <view wx:for="{{taxDatas}}" style='margin-bottom:20rpx'> 22 <view wx:for="{{taxDatas}}" style='margin-bottom:20rpx'>
23 - <view class='card_rectangle_bg_column' style='padding:30rpx' id='{s{item.id}}' bindtap='goItemDetails'>  
24 - <text class='text_blue_36'>所得项目:{{item.method}}</text> 23 + <view class='card_rectangle_bg_column' style='padding:30rpx' id='{{item.id}}' bindtap='goItemDetails'>
  24 + <text class='text_blue_36'>扣缴义务人: {{item.declaring_unit}}</text>
  25 + <text class='text_blue_36'>所得项目: {{item.method}}</text>
25 <view class='divide_line_f5f5f5' style='margin:30rpx 0'></view> 26 <view class='divide_line_f5f5f5' style='margin:30rpx 0'></view>
26 <!-- <text class='text_999_28'>累计收入额:{{item.personal_income}}</text> --> 27 <!-- <text class='text_999_28'>累计收入额:{{item.personal_income}}</text> -->
27 <text class='text_999_28'>当期收入额:<text class='text_333_28 left_360'>¥{{item.personal_income}}</text></text> 28 <text class='text_999_28'>当期收入额:<text class='text_333_28 left_360'>¥{{item.personal_income}}</text></text>
28 <text class='text_999_28'>累计应缴纳所得额:<text class='text_333_28 left_360'>¥{{item.accumulated_taxable_income}}</text></text> 29 <text class='text_999_28'>累计应缴纳所得额:<text class='text_333_28 left_360'>¥{{item.accumulated_taxable_income}}</text></text>
29 <text class='text_999_28'>累计应扣缴税额:<text class='text_333_28 left_360'>¥{{item.accumulated_withholding_tax}}</text></text> 30 <text class='text_999_28'>累计应扣缴税额:<text class='text_333_28 left_360'>¥{{item.accumulated_withholding_tax}}</text></text>
30 <text class='text_999_28'>已预交税额:<text class='text_333_28 left_360'>¥{{item.prepay_tax}}</text></text> 31 <text class='text_999_28'>已预交税额:<text class='text_333_28 left_360'>¥{{item.prepay_tax}}</text></text>
31 - <text class='text_999_28'>本期应缴税额:<text class='text_333_28 text_color_28 left_360'>¥{{item.personal_tax}}</text></text> 32 + <text class='text_999_28'>本期应缴税额:<text class='text_333_28 text_color_28 left_360'>¥{{item.refund_tax}}</text></text>
32 </view> 33 </view>
33 </view> 34 </view>
34 </view> 35 </view>
注册登录 后发表评论