...
|
...
|
@@ -30,7 +30,7 @@ Page({ |
30
|
30
|
formSubmit: function(e) { //提交
|
31
|
31
|
console.log("formSubmit", e);
|
32
|
32
|
var formdata = e.detail.value
|
33
|
|
- if (formdata.total_salary || formdata.total_salary || formdata.remuneration_labor || formdata.author_payment || formdata.special_manage_cost || formdata.other_free_income || formdata.personal_endowment || formdata.personal_medical || formdata.personal_unemployment || formdata.personal_house_fund || formdata.childrens_education || formdata.continuing_education || formdata.housing_loan_interest || formdata.housing_rent || formdata.caring_old_people || formdata.serious_illness_medical || formdata.annuity || formdata.commercial_insurance || formdata.tax_extension || formdata.other_fee || formdata.donation_deducted || formdata.years_bouns || formdata.tax_savings || formdata.accumulated_withholding_tax){
|
|
33
|
+ if (formdata.total_salary || formdata.total_salary || formdata.remuneration_labor || formdata.author_payment || formdata.special_manage_cost || formdata.other_free_income || formdata.personal_endowment || formdata.personal_medical || formdata.personal_unemployment || formdata.personal_house_fund || formdata.childrens_education || formdata.continuing_education || formdata.housing_loan_interest || formdata.housing_rent || formdata.caring_old_people || formdata.serious_illness_medical || formdata.annuity || formdata.commercial_insurance || formdata.tax_extension || formdata.other_fee || formdata.donation_deducted || formdata.year_donation_deducted || formdata.years_bouns || formdata.tax_savings || formdata.accumulated_withholding_tax){
|
34
|
34
|
this.submitRequest(formdata)
|
35
|
35
|
}else{
|
36
|
36
|
this.showToast("其他收入内容不能为空")
|
...
|
...
|
@@ -51,7 +51,7 @@ Page({ |
51
|
51
|
"declaring_unit_id":that.data.unit_id,
|
52
|
52
|
"item": {
|
53
|
53
|
"total_salary": that.parseToFloat(request_data.total_salary), //工资薪金,
|
54
|
|
- "remuneration_labor": that.parseToFloat(request_data.setData), //劳务报酬,
|
|
54
|
+ "remuneration_labor": that.parseToFloat(request_data.remuneration_labor), //劳务报酬,
|
55
|
55
|
"author_payment": that.parseToFloat(request_data.author_payment), //稿酬,
|
56
|
56
|
"special_manage_cost": that.parseToFloat(request_data.special_manage_cost), //特许经营权使用费,
|
57
|
57
|
"other_free_income": that.parseToFloat(request_data.other_free_income), //其他免税收入,
|
...
|
...
|
@@ -71,9 +71,9 @@ Page({ |
71
|
71
|
"commercial_insurance": that.parseToFloat(request_data.commercial_insurance), //商业健康保险
|
72
|
72
|
"tax_extension": that.parseToFloat(request_data.tax_extension), //税延养老保险
|
73
|
73
|
"other_fee": that.parseToFloat(request_data.other_fee),//其他税前扣除额
|
74
|
|
- "donation_deducted": that.parseToFloat(request_data.donation_deducted), //准予扣除的捐赠
|
|
74
|
+ "year_donation_deducted": that.parseToFloat(request_data.year_donation_deducted), //准予扣除的捐赠
|
75
|
75
|
"years_bouns": that.parseToFloat(request_data.years_bouns), //全年一次性奖金
|
76
|
|
-
|
|
76
|
+ "donation_deducted": that.parseToFloat(request_data.donation_deducted), //准予扣除的捐赠
|
77
|
77
|
"tax_savings": that.parseToFloat(request_data.tax_savings), //减免税额
|
78
|
78
|
"accumulated_withholding_tax": that.parseToFloat(request_data.accumulated_withholding_tax), //应扣缴税额
|
79
|
79
|
},
|
...
|
...
|
|