addextrainfo.js
41.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
// pages/main/addtionalreduce/addextrainfo/addextrainfo.js
var format = require('../../../../utils/util.js');
var OSSInit;
var app = getApp();
var baseUrl = app.globalData.baseUrl;
const AddTypeNames = { 'children_education': '子女教育', 'continuing_education': '继续教育', 'support_duty': '赡养老人', 'medical_fund': '大病医疗', 'house_fund': '住房' }
const Deduce_amounts_month = { 'children_education': 1000, 'continuing_education': 400, 'support_duty': 2000, 'medical_fund': 0,'house_fund':0}
const Deduce_amounts_year = { 'children_education': 12000, 'continuing_education': 4800, 'support_duty': 24000, 'medical_fund': 0, 'house_fund': 0 }
Page({
idcard_belong:null,//照片信息获取返回时判断所属
legal_entity_id: "",
legal_entity:"",
data: {
deduction_amount:'',
lable: 0,
datas02: [],
title: '',
isIdCard:true,
extrainfo_arr: ["请上传子女出生证明、学籍信息凭证、学费凭证、本人结婚证和分摊协议", "请上传学历学籍凭证", "请上传出生证明或关系证明、独生子女证、分摊协议、其他法定赡养人赡养证明", "请上传诊断书和医疗费用收据", "请上传首套房证明、还款证明、不动产登记证、结婚证和夫妻约定抵扣协议"],
cur_index: 'support_duty',
lovercardtypeData: {
label: '身份证件类型',
bindtype: 'lovercardtype',
selected: '居民身份证',
disabled: true,
isblack: 'true',
placeholder: '请选择身份证件类型',
values: ["居民身份证", "军官证", '士兵证', '武警警官证', '港澳居民来往内地通行证', '外交官证', '中国护照',
'外国护照', '香港永久性居民身份证', '澳门特别行政区永久性居民身份证', '台湾身份证', '台湾居民来往大陆通行证', '外国人永久居留证'
],
onChange: 'onPickerSelect'
},
loverbirthDate: {
label: '出生日期',
bindtype: 'loverbirthday',
selected: '',
isblack: 'true',
placeholder: '请选择出生日期',
mode: "date",
fields: "day",
start: '1949-01-01',
end: '2018-01-01',
onChange: 'onPickerSelect',
},
older_relativeData: {
label: '与纳税人的关系',
isrequre: true,
bindtype: 'older_relative',
selected: '',
isblack: 'true',
placeholder: '请选择与纳税人的关系',
values: ["父母", "祖父母", "外祖父母"],
onChange: 'onPickerSelect'
},
taxperson_relativeData: {
label: '与纳税人的关系',
isrequre: true,
bindtype: 'taxperson_relative',
selected: '',
isblack: 'true',
placeholder: '请选择与纳税人的关系',
values: ["本人", "配偶", "子女"],
onChange: 'onPickerSelect'
},
childrencardtypeData: {
label: '子女身份证件类型',
isrequre: true,
bindtype: 'childrencardtype',
selected: '居民身份证',
disabled: true,
isblack: 'true',
placeholder: '请选择身份证件类型',
values: ["居民身份证", "军官证", '士兵证', '武警警官证', '港澳居民来往内地通行证', '外交官证', '中国护照',
'外国护照', '香港永久性居民身份证', '澳门特别行政区永久性居民身份证', '台湾身份证', '台湾居民来往大陆通行证', '外国人永久居留证'
],
onChange: 'onPickerSelect'
},
childrenbirthDate: {
label: '出生日期',
isrequre: true,
bindtype: 'childrenbirthday',
selected: '',
isblack: 'true',
placeholder: '请选择出生日期',
mode: "date",
fields: "day",
start: '1970-01-01',
end: '2018-01-01',
onChange: 'onPickerSelect',
},
childedudegreeData: {
label: '子女受教育阶段',
isrequre: true,
bindtype: 'child_edu_degree',
selected: '',
isblack: 'true',
values: ["学前教育(满3岁)", "小学教育", "初中教育", "普通高中教育", "中等职业教育", "大学专科教育", "大学本科教育","硕士研究生教育","博士研究生教育"],
placeholder: '请选择教育阶段',
onChange: 'onPickerSelect'
},
edudegreeData: {
label: '教育阶段',
bindtype: 'edu_degree',
selected: '',
isblack: 'true',
values: ["小学", "初中", "高中", "大学"],
placeholder: '请选择教育阶段',
onChange: 'onPickerSelect'
},
edutypeData: {
label: '教育类型',
isrequre: true,
bindtype: 'edu_type',
selected: '',
isblack: 'true',
values: ["学历教育", "非学历教育"],
placeholder: '请选择教育类型',
onChange: 'onPickerSelect'
},
edustyleData: {
label: '教育类别',
isrequre: true,
bindtype: 'edu_style',
selected: '',
isblack: 'true',
values: ["职业能力", "专业能力"],
placeholder: '请选择教育类别',
onChange: 'onPickerSelect'
},
edulevelData: {
label: '学历教育阶段',
isrequre: true,
bindtype: 'edu_level',
selected: '',
isblack: 'true',
values: ["专科", "本科","硕士研究生","博士研究生","其他"],
placeholder: '请选择学历教育阶段',
onChange: 'onPickerSelect'
},
supporttypeData: {
label: '赡养类型',
isrequre: true,
bindtype: 'support_type',
selected: '',
isblack: 'true',
values: ["独生子女", "非独生子女"],
placeholder: '请选择赡养类型',
onChange: 'onPickerSelect'
},
oldercardtypeData: {
label: '被赡养人证件类型',
isrequre: true,
disabled:true,
bindtype: 'oldercardtype',
selected: '居民身份证',
isblack: 'true',
placeholder: '请选择被赡养人证件类型',
values: ["居民身份证", "军官证", '士兵证', '武警警官证', '港澳居民来往内地通行证', '外交官证', '中国护照',
'外国护照', '香港永久性居民身份证', '澳门特别行政区永久性居民身份证', '台湾身份证', '台湾居民来往大陆通行证', '外国人永久居留证'
],
onChange: 'onPickerSelect'
},
cardtypeData: {
label: '身份证件类型',
isrequre: true,
bindtype: 'cardtype',
selected: '居民身份证',
disabled: true,
isblack: 'true',
placeholder: '请选择证件类型',
values: ["居民身份证", "军官证", '士兵证', '武警警官证', '港澳居民来往内地通行证', '外交官证', '中国护照',
'外国护照', '香港永久性居民身份证', '澳门特别行政区永久性居民身份证', '台湾身份证', '台湾居民来往大陆通行证', '外国人永久居留证'
],
onChange: 'onPickerSelect'
},
olderbirthDate: {
label: '被赡养人出生日期',
isrequre: true,
bindtype: 'olderbirthday',
selected: '',
isblack: 'true',
placeholder: '请选择被赡养人出生日期',
mode: "date",
fields: "day",
start: '1970-01-01',
end: '2018-01-01',
onChange: 'onPickerSelect',
},
singlechildData: {
label: '是否独生子女',
bindtype: 'single_child',
selected: '',
isblack: 'true',
values: ["是", "否"],
placeholder: '请选择是否独生子女',
onChange: 'onPickerSelect'
},
reducetypeData: {
label: '扣除方式',
isrequre: true,
bindtype: 'reduce_type',
selected: '',
isblack: 'true',
values: ["月度", "年度"],
placeholder: '请选择扣除方式',
onChange: 'onPickerSelect'
},
studystartdate: {
label: '受教育日期起',
isrequre: true,
bindtype: 'study_start_date',
selected: '',
isblack: 'true',
values: ["是", "否"],
placeholder: '请选择受教育日期',
onChange: 'onPickerSelect',
mode: "date",
fields: "day",
datelong:0,
start: '1970-01-01',
},
studyenddate: {
label: '预计受教育日期止',
isrequre: true,
bindtype: 'study_end_date',
selected: '',
isblack: 'true',
values: ["是", "否"],
placeholder: '请选择受教育日期止',
onChange: 'onPickerSelect',
mode: "date",
fields: "day",
start: '1970-01-01',
datelong: 0,
},
identifytypeData: {
label: '证书类型',
bindtype: 'identify_type',
selected: '',
isblack: 'true',
values: ["产权证", "不动产权登记证","出售合同号","预售合同号"],
placeholder: '请选择证书类型',
onChange: 'onPickerSelect'
},
loantypeData: {
label: '贷款类型',
bindtype: 'loan_type',
selected: '',
isblack: 'true',
values: ["公积金贷款", "商业贷款"],
placeholder: '请选择贷款类型',
onChange: 'onPickerSelect'
},
leasetypeData: {
label: '出租方类型',
bindtype: 'lease_type',
selected: '',
isblack: 'true',
values: ["组织", "自然人"],
placeholder: '请选择出租方类型',
onChange: 'onPickerSelect'
},
houseLocateInfo: {
label: '房屋坐落地址',
mode: 'region',
bindtype: 'house_locate',
isblack: 'true',
address_code: ['', '', ''],
address_value: ['', '', ''],
selected: '',
placeholder: '请选择地址',
onChange: 'onPickerSelect'
},
firstpaybackDate: {
label: '首次还款日期',
bindtype: 'payback_date',
selected: '',
isblack: 'true',
values: ["是", "否"],
placeholder: '请选择日期',
onChange: 'onPickerSelect',
mode: "date",
fields: "day",
start: '2018-01-01',
datelong: 0,
},
leasestartDate: {
label: '租赁期起',
bindtype: 'lease_start_date',
selected: '',
isblack: 'true',
values: ["是", "否"],
placeholder: '请选择日期',
onChange: 'onPickerSelect',
mode: "date",
fields: "day",
start: '2000-01-01',
datelong: 0,
},
leaseendDate: {
label: '租赁期止',
bindtype: 'lease_start_date',
selected: '',
isblack: 'true',
values: ["是", "否"],
placeholder: '请选择日期',
onChange: 'onPickerSelect',
mode: "date",
fields: "day",
start: '2000-01-01',
datelong: 0,
},
loandatelongData: {
label: '贷款期限(月数)',
bindtype: 'loan_datelong',
selected: '',
isblack: 'true',
values: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
placeholder: '请选择贷款期限',
onChange: 'onPickerSelect'
},
reducedateData: {
label: '扣除时间',
bindtype: 'reduce_date',
selected: '',
isblack: 'true',
values: ["是", "否"],
placeholder: '请选择扣除时间',
onChange: 'onPickerSelect',
mode: "date",
fields: "month",
start: '1970-01',
datelong:0,
},
edu_lable: "",
oldersupport_lable: "",
img_path: "/images/upload_img.png"
},
/**
* Lifecycle function--Called when page load
*/
onLoad: function(options) {
var pages = getCurrentPages()
var frontPage = pages[pages.length - 2]
console.log('---------frontPage', frontPage.data)
console.log("options", options);
const nameKey = options.status
this.legal_entity_id = frontPage.data.legal_entity_id
this.legal_entity = frontPage.data.legal_entity
var reduce_typeData = this.data.reducetypeData
var deduction_amount
if (options.reducetype == '月度'){
reduce_typeData.selected = '月度'
deduction_amount = Deduce_amounts_month[nameKey]
}else {
deduction_amount = Deduce_amounts_year[nameKey]
reduce_typeData.selected = '年度'
}
var title = '添加' + (options.title ? options.title : AddTypeNames[nameKey])
this.setData({
title: title,
cur_index: nameKey,
reducetypeData: reduce_typeData,
deduction_amount: deduction_amount
})
wx.setNavigationBarTitle({
title: title,
})
this.initOSS()
if (options.datas && options.datas.length){
this.handleTransData(JSON.parse(options.datas))
}
},
handleTransData: function (data) {
switch (this.data.cur_index + '') {
case 'children_education':
var setData = {}
if (data.id_card_no && data.id_card_no.length) {
setData.children_id_card_no = data.id_card_no
}
if (data.name && data.name.length) {
setData.children_name = data.name
}
if (data.birth_date && data.birth_date>0) {
var childrenbirthDate = this.data.childrenbirthDate
childrenbirthDate.selected = format.formatTime_date(data.birth_date)
childrenbirthDate.datelong = data.birth_date
setData.childrenbirthDate = childrenbirthDate
}
if (data.percent && data.percent.length) {
setData.percent = data.percent
}
if (data.student_no && data.student_no.length) {
setData.percent = data.children_student_no
}
if (data.education_period && data.education_period.length) {
var childedudegreeData = this.data.childedudegreeData
childedudegreeData.selected = data.education_period
setData.childedudegreeData = childedudegreeData
}
if (data.education_start && data.education_start.length) {
var studystartdate = this.data.studystartdate
studystartdate.selected = format.formatTime_date(data.education_start)
studystartdate.datelong = data.education_start
setData.studystartdate = studystartdate
}
if (data.education_end && data.education_end.length) {
var studyenddate = this.data.studyenddate
studyenddate.selected = format.formatTime_date(data.education_end)
studyenddate.datelong = data.education_end
setData.studyenddate = studyenddate
}
// if (data.spouse_name && data.spouse_name.length) {
// }
// if (data.spouse_id_card_no && data.spouse_id_card_no.length) {
// }
// if (this.data.loverbirthDate.selected.length) {
// }
// if (this.data.taxperson_relativeData.selected.length) {
// }
// if (data.relationship && data.relationship.length) {
// }
this.setData(setData)
break;
}
},
initOSS: function() {
var that = this
var Authorization = getApp().globalData.Authorization;
//OSS 上传前init
wx.showLoading()
wx.request({
url: baseUrl + "filemeta/v1/inits",
header: {
'Authorization': Authorization
},
method: 'POST',
data: {
"access_type": "web_upload",
"action ": "put_object",
"instance_id": "",
"object_type": "wx_image"
},
success: function(result) {
OSSInit = result.data
console.log(' OSS init 成功', OSSInit)
},
fail: function(res) {
console.log('OSS init 失败', res)
},
complete: function() {
wx.hideLoading()
}
})
},
/**
* Lifecycle function--Called when page is initially rendered
*/
onReady: function() {
},
onShow: function () {
var that = this
var id_error //= this.data.id_error
wx.getStorage({
key: 'id_info',
success: function (res) {
console.log('id_info', res.data)
if (res.data && res.data.length > 0) {
var id_info = JSON.parse(res.data)
var birth_day
if (id_info.birthday.month > 9 && id_info.birthday.day > 9) {
birth_day = id_info.birthday.year + '-' + id_info.birthday.month + '-' + id_info.birthday.day;
} else if (id_info.birthday.month > 9 && id_info.birthday.day < 10) {
birth_day = id_info.birthday.year + '-' + id_info.birthday.month + '-0' + id_info.birthday.day;
} else if (id_info.birthday.month < 10 && id_info.birthday.day > 9) {
birth_day = id_info.birthday.year + '-0' + id_info.birthday.month + '-' + id_info.birthday.day;
} else if (id_info.birthday.month < 10 && id_info.birthday.day < 10) {
birth_day = id_info.birthday.year + '-0' + id_info.birthday.month + '-0' + id_info.birthday.day;
}
if (that.data.name.length > 0 && id_info.name != that.data.name) {
that.showtoast("姓名冲突")
id_error = true
return
}
if (that.data.card_number.length > 0 && id_info.id_card_number != that.data.card_number) {
that.showtoast("证照号码冲突")
id_error = true
return
}
// children_id_card_no
// spouse_id_card_no
// older_idno
// long_birth_date: Date.parse(new Date(birth_day)) / 1000,
// that.data.genderData.selected = id_info.gender
// that.data.birthDate.selected = birth_day
console.log('name***card_number', that.data.name + '***' + that.data.card_number)
if (this.idcard_belong == 'children_id_card_no'){
this.data.childrenbirthDate.selected = birth_day
data = {
children_id_card_no: id_info.id_card_number,
children_name: id_info.name,
childrenbirthDate: this.data.childrenbirthDate
}
} else if (this.idcard_belong == 'spouse_id_card_no') {
this.data.loverbirthDate.selected = birth_day
data = {
spouse_id_card_no: id_info.id_card_number,
spouse_name: id_info.name,
loverbirthDate: this.data.loverbirthDate
}
}
this.setData(data)
console.log('-cardtypeData--', that.data.cardtypeData)
}
},
})
wx.removeStorage({
key: 'id_info',
success: function (res) {
console.log('remove_idinfo', res)
},
})
},
formSubmit: function(e) {
console.log("formSubmit", e);
var formdata = e.detail.value
var newdata = formdata;
var subUrl = ''
switch (this.data.cur_index + '') {
case 'children_education':
subUrl = 'persontax/v1/children-educations'
if (!formdata.children_id_card_no || formdata.children_id_card_no.length < 1) {
this.showToast('请填写子女证件号码')
return
}
if (!formdata.children_name || formdata.children_name.length < 1) {
this.showToast('请填写子女姓名')
return
}
if (this.data.childrenbirthDate.selected.length < 1) {
this.showToast('请选择子女出生日期')
return
}
if (!formdata.percent || formdata.percent.length < 1) {
this.showToast('请填写扣除分配比例')
return
}else{
newdata.percent = parseFloat(formdata.percent)
}
if (!formdata.children_student_no || formdata.children_student_no.length < 1) {
this.showToast('请填写学籍号')
return
}
if (this.data.childedudegreeData.selected.length < 1) {
this.showToast('请选择教育阶段')
return
}
if (this.data.studystartdate.selected.length < 1) {
this.showToast('请选择受教育起始日期')
return
}
if (this.data.studyenddate.selected.length < 1) {
this.showToast('请选择受教育终止日期')
return
}
if (formdata.spouse_name || formdata.spouse_id_card_no || this.data.loverbirthDate.selected){
if (!formdata.spouse_name || formdata.spouse_name.length < 1) {
this.showToast('请填写配偶姓名')
return
} else if (!formdata.spouse_id_card_no || formdata.spouse_id_card_no.length < 1) {
this.showToast('请填写配偶证件号码')
return
} else if (this.data.loverbirthDate.selected.length < 1) {
this.showToast('请选择配偶出生日期')
return
}
// if (this.data.taxperson_relativeData.selected.length < 1) {
// this.showToast('请选择与纳税人关系')
// return
// }
}
newdata.relationship = this.data.taxperson_relativeData.selected
newdata.children_id_card_type = '1'//this.data.childrencardtypeData.selected
newdata.children_birthday = this.data.childrenbirthDate.datelong
newdata.education_end = this.data.studystartdate.datelong
newdata.education_start = this.data.studyenddate.datelong
newdata.education_period = this.data.childedudegreeData.selected
newdata.children_nation = "中国"
newdata.spouse_id_card_type = '1'//this.data.lovercardtypeData.selected
newdata.spouse_birthday = this.data.loverbirthDate.datelong > 0 ? this.data.loverbirthDate.datelong: 0
newdata.nation = "中国"
break;
case 'continuing_education':
subUrl = 'persontax/v1/continuing-educations'
if (this.data.edutypeData.selected.length < 1) {
this.showToast('请选择教育类别')
return
} else if (this.data.edu_lable == 'school') {
// newdata.edu_type_lable = '0'
if (this.data.edulevelData.selected.length < 1) {
this.showToast('请选择学历教育阶段')
return
}
if (this.data.studystartdate.selected.length < 1) {
this.showToast('请选择受教育日期')
return
}
if (this.data.studyenddate.selected.length < 1) {
this.showToast('请选择受教育日期')
return
}
newdata.education_start = this.data.studystartdate.datelong
newdata.education_end = this.data.studyenddate.datelong
newdata.education_type = 'title'//学历
newdata.education_period = this.data.edulevelData.selected
} else if (this.data.edu_lable == 'tech') {
if (this.data.edustyleData.selected.length < 1) {
this.showToast('请选择教育类型')
return
}
if (!formdata.occupational_qualifiy_name || formdata.occupational_qualifiy_name.length < 1) {
this.showToast('请填写证书名称')
return
}
if (!formdata.certification_no || formdata.certification_no.length < 1) {
this.showToast('请填写证书编号')
return
}
if (!formdata.certification_autority || formdata.certification_autority.length < 1) {
this.showToast('请填写发证机关')
return
}
//新增教育类型(区别教育类别)
// newdata.edu_type_lable = '1'
newdata.education_type = this.data.edustyleData.selected == '职业能力' ? 'profession' : 'major'
}
break;
case 'support_duty':
subUrl = 'persontax/v1/support-duties'
if (this.data.supporttypeData.selected.length < 1) {
this.showToast('请选择赡养类型')
return
} else if (!formdata.older_name || formdata.older_name.length < 1) {
this.showToast('请填写赡养人姓名')
return
} else if (this.data.oldercardtypeData.selected.length < 1) {
this.showToast('请选择赡养人证件类型')
return
} else if (!formdata.older_idno || formdata.older_idno.length < 1) {
this.showToast('请填写赡养人证件号')
return
}
if (this.data.olderbirthDate.selected.length < 1) {
this.showToast('请选择赡养人出生日期')
return
}
if (this.data.older_relativeData.selected.length < 1) {
this.showToast('请选择与纳税人关系')
return
}
newdata.older_birthday = this.data.olderbirthDate.datelong
newdata.older_relative = this.data.older_relativeData.selected
newdata.support_type = this.data.supporttypeData.selected
newdata.older_cardtype = this.data.oldercardtypeData.selected
break;
case 'medical_fund':
subUrl = 'persontax/v1/medical-funds'
if (!formdata.name || formdata.name.length < 1) {
this.showToast('请填写姓名')
return
} else if (this.data.cardtypeData.selected.length < 1) {
this.showToast('请选择证件类型')
return
} else if (!formdata.id_card_no || formdata.id_card_no.length < 1) {
this.showToast('请填写证件号码')
return
} else if (this.data.taxperson_relativeData.selected.length < 1) {
this.showToast('请选择与纳税人关系')
return
} else if (!formdata.total_amount || formdata.total_amount < 0) {
this.showToast('请填写医疗支出总金额')
return
} else if (!formdata.amount_by_person || formdata.amount_by_person < 0) {
this.showToast('请填写个人负担金额')
return
}
newdata.total_amount = parseFloat(formdata.total_amount)
newdata.amount_by_person = parseFloat(formdata.amount_by_person)
newdata.id_card_type = this.data.cardtypeData.selected
newdata.relationship = this.data.taxperson_relativeData.selected
break;
case 'house_fund':
// subUrl = 'persontax/v1/medical-funds'
console.log('TITLE', this.data.title)
if (!formdata.lover_name || formdata.lover_name.length < 1) {
this.showToast('请填写配偶姓名')
return
} else if (!formdata.lover_idno || formdata.lover_idno.length < 1) {
this.showToast('请填写配偶证件号码')
return
}
if (this.data.lovercardtypeData.selected.length < 1) {
this.showToast('请选择配偶证件类型')
return
}
if (this.data.loverbirthDate.selected.length < 1) {
this.showToast('请选择配偶出生日期')
return
}
if (this.data.title == "添加住房贷款利息") {
if (this.data.houseLocateInfo.address_value.length < 1) {
this.showToast('请选择住房地址')
return
} else if (this.data.identifytypeData.selected.length < 1) {
this.showToast('请选择证书类型')
return
} else if (!formdata.identify_no || formdata.identify_no.length < 1) {
this.showToast('请填写证书号码')
return
} else if (this.data.loantypeData.selected.length < 1) {
this.showToast('请选择贷款类型')
return
} else if (!formdata.contract_no || formdata.contract_no.length < 1) {
this.showToast('请填写贷款合同编号')
return
} else if (this.data.firstpaybackDate.selected.length < 1) {
this.showToast('请选择首次还款日期')
return
} else if (this.data.loandatelongData.selected.length < 1) {
this.showToast('请选择贷款期限')
return
}
newdata.house_location = this.data.houseLocateInfo.address_value[0] + this.data.houseLocateInfo.address_value[1] + this.data.houseLocateInfo.address_value[2]
newdata.identify_type = this.data.identifytypeData.selected
newdata.loan_type = this.data.loantypeData.selected
newdata.payback_date = this.data.firstpaybackDate.selected
newdata.loan_datelong = this.data.loandatelongData.selected
} else if (this.data.title == "添加住房租金") {
if (this.data.houseLocateInfo.address_value.length < 1) {
this.showToast('请选择住房地址')
return
} else if (this.data.leasetypeData.selected.length < 1) {
this.showToast('请选择出租方类型')
return
} else if (!formdata.identify_no || formdata.identify_no.length < 1) {
this.showToast('请填写出租方号码')
return
} else if (this.data.identifytypeData.selected.length < 1) {
this.showToast('请选择证件类型')
return
} else if (!formdata.identify_no || formdata.identify_no.length < 1) {
this.showToast('请填写证件号码')
return
} else if (this.data.leasestartDate.selected.length < 1) {
this.showToast('请选择日期')
return
} else if (this.data.leaseendDate.selected.length < 1) {
this.showToast('请选择日期')
return
}
newdata.house_location = this.data.houseLocateInfo.address_value[0] + this.data.houseLocateInfo.address_value[1] + this.data.houseLocateInfo.address_value[2]
newdata.lease_type = this.data.leasetypeData.selected
newdata.identify_type = this.data.identifytypeData.selected
newdata.lease_startdate = this.data.leasestartDate.selected
newdata.lease_enddate = this.data.leaseendDate.selected
Console.log('houseLocateInfo', this.data.houseLocateInfo)
}
newdata.lover_cardtype = this.data.lovercardtypeData.selected
newdata.lover_birthdate = this.data.loverbirthDate.selected
break;
}
if (this.data.reducetypeData.selected.length < 1) {
this.showToast('请选择扣除方式')
return
}
// else if (!formdata.reduce_money || formdata.reduce_money.length < 1) {
// this.showToast('请填写扣除金额')
// return
// }
if (this.data.cur_index != 'medical_fund'){
newdata.deduction_type = this.data.reducetypeData.selected
newdata.deduction_amount = this.data.deduction_amount//formdata.reduce_money
}
newdata.legal_entity_id = this.legal_entity_id
newdata.legal_entity = this.legal_entity
this.addDatas(newdata, subUrl)
},
addDatas: function (newdata,subUrl){
wx.showModal({
title: '确认要提交申报吗?',
content: '确认后将不能修改',
showCancel: true,
confirmColor:'#357AEB',
cancelColor:'#999',
success: function (res) {
if (res.confirm) {
var that = this;
var Authorization = app.globalData.Authorization;
wx.request({
url: baseUrl + subUrl,
method: "POST",
header: {
'content-type': 'application/json',
"Authorization": Authorization
},
data: newdata,
success(res) {
if (res && res.statusCode < 300) {
wx.navigateBack({
delta: 1
})
}
}
})
} else if (res.cancel) {
}
}
})
},
getIdInfo: function (e) {
this.idcard_belong = e.currentTarget.id
if (this.data.isIdCard) {
wx.navigateTo({
url: '../../taxperson/idinfo/idinfo',
success: function (res) { },
})
}
},
onPickerSelect: function(e) {
console.log('picker发送选择改变,携带值为', e)
switch (e.currentTarget.id) {
case 'lovercardtype':
var lover_cardtypeData = this.data.lovercardtypeData
lover_cardtypeData.selected = lover_cardtypeData.values[e.detail.value]
this.setData({
lovercardtypeData: lover_cardtypeData
})
break;
case 'loverbirthday':
var lover_birthDate = this.data.loverbirthDate
lover_birthDate.selected = e.detail.value
lover_birthDate.datelong = (Date.parse(new Date(e.detail.value)) / 1000)
this.setData({
loverbirthDate: lover_birthDate
})
break;
case 'older_relative':
var older_relativeData = this.data.older_relativeData
older_relativeData.selected = older_relativeData.values[e.detail.value]
this.setData({
older_relativeData: older_relativeData
})
break;
case 'taxperson_relative':
var taxperson_relativedata = this.data.taxperson_relativeData
taxperson_relativedata.selected = taxperson_relativedata.values[e.detail.value]
this.setData({
taxperson_relativeData: taxperson_relativedata
})
break;
case 'childrencardtype':
var children_cardtypedata = this.data.childrencardtypeData
children_cardtypedata.selected = children_cardtypedata.values[e.detail.value]
this.setData({
childrencardtypeData: children_cardtypedata
})
break;
case 'childrenbirthday':
var children_birthDate = this.data.childrenbirthDate
children_birthDate.selected = e.detail.value
children_birthDate.datelong = (Date.parse(new Date(e.detail.value)) / 1000)
this.setData({
childrenbirthDate: children_birthDate
})
break;
case 'study_start_date':
var study_startdate = this.data.studystartdate
study_startdate.selected = e.detail.value
study_startdate.datelong = (Date.parse(new Date(e.detail.value)) / 1000)
this.setData({
studystartdate: study_startdate
})
break;
case 'study_end_date':
var study_enddate = this.data.studyenddate
study_enddate.selected = e.detail.value
study_enddate.datelong = (Date.parse(new Date(e.detail.value)) / 1000)
this.setData({
studyenddate: study_enddate
})
break;
case 'child_edu_degree':
var childedudegreeData = this.data.childedudegreeData
childedudegreeData.selected = childedudegreeData.values[e.detail.value]
this.setData({
childedudegreeData: childedudegreeData
})
break;
case 'edu_degree':
var edudegree_data = this.data.edudegreeData
edudegree_data.selected = edudegree_data.values[e.detail.value]
this.setData({
edudegreeData: edudegree_data
})
break;
case 'support_type':
var support_typeData = this.data.supporttypeData
support_typeData.selected = support_typeData.values[e.detail.value]
this.setData({
oldersupport_lable: e.detail.value == 0 ? 'single' : 'together',
supporttypeData: support_typeData
})
break;
case 'oldercardtype':
var older_cardtypeData = this.data.oldercardtypeData
older_cardtypeData.selected = older_cardtypeData.values[e.detail.value]
this.setData({
oldercardtypeData: older_cardtypeData
})
break;
case 'olderbirthday':
var older_birthDate = this.data.olderbirthDate
older_birthDate.selected = e.detail.value
older_birthDate.datelong = Date.parse(new Date(e.detail.value)) / 1000,
this.setData({
olderbirthDate: older_birthDate
})
break;
case 'reduce_type':
var reduce_typeData = this.data.reducetypeData
var deduction_amount
if (e.detail.value == '0') {
deduction_amount = Deduce_amounts_month[this.data.cur_index]
} else {
deduction_amount = Deduce_amounts_year[this.data.cur_indexfan]
}
reduce_typeData.selected = reduce_typeData.values[e.detail.value]
this.setData({
reducetypeData: reduce_typeData,
deduction_amount: deduction_amount
})
break;
case 'edu_type':
var edutypee_data = this.data.edutypeData
edutypee_data.selected = edutypee_data.values[e.detail.value]
this.setData({
edu_lable: e.detail.value == 0 ? 'school' : 'tech',
edutypeData: edutypee_data
})
break;
case 'edu_style':
var edustyle_data = this.data.edustyleData
edustyle_data.selected = edustyle_data.values[e.detail.value]
this.setData({
edustyleData: edustyle_data
})
break;
case 'edu_level':
var edulevel_data = this.data.edulevelData
edulevel_data.selected = edulevel_data.values[e.detail.value]
this.setData({
edulevelData: edulevel_data
})
break;
case 'cardtype':
var cardtype_Data = this.data.cardtypeData
cardtype_Data.selected = cardtype_Data.values[e.detail.value]
this.setData({
cardtypeData: cardtype_Data
})
break;
case 'identify_type':
var identifytype_Data = this.data.identifytypeData
identifytype_Data.selected = identifytype_Data.values[e.detail.value]
this.setData({
identifytypeData: identifytype_Data
})
break;
case 'loan_type':
var loantype_Data = this.data.loantypeData
loantype_Data.selected = loantype_Data.values[e.detail.value]
this.setData({
loantypeData: loantype_Data
})
break;
case 'payback_date':
var firstpayback_Date = this.data.firstpaybackDate
firstpayback_Date.selected = e.detail.value
console.log('reduce_date', Date.parse(new Date(e.detail.value)))
this.setData({
firstpaybackDate: firstpayback_Date
})
break;
case 'loan_datelong':
var loandatelong_Data = this.data.loandatelongData
loandatelong_Data.selected = loandatelong_Data.values[e.detail.value]
this.setData({
loandatelongData: loandatelong_Data
})
break;
case 'lease_type':
var leasetype_Data = this.data.leasetypeData
leasetype_Data.selected = leasetype_Data.values[e.detail.value]
this.setData({
leasetypeData: leasetype_Data
})
break;
case 'lease_start_date':
var leasestart_Date = this.data.leasestartDate
leasestart_Date.selected = e.detail.value
console.log('reduce_date', Date.parse(new Date(e.detail.value)))
this.setData({
leasestartDate: leasestart_Date
})
break;
case 'lease_end_date':
var leaseend_Date = this.data.leaseendDate
leaseend_Date.selected = e.detail.value
console.log('reduce_date', Date.parse(new Date(e.detail.value)))
this.setData({
leaseendDate: leaseend_Date
})
break;
case 'house_locate':
console.log('house_locate', e)
var house_address = this.data.houseLocateInfo;
house_address.address_value = e.detail.value
if (e.detail.value[0] == e.detail.value[1]) {
house_address.selected = e.detail.value[1] + e.detail.value[2]
} else {
house_address.selected = e.detail.value[0] + e.detail.value[1] + e.detail.value[2]
}
this.setData({
houseLocateInfo: house_address
})
break;
case 'reduce_date':
var reducedate_data = this.data.reducedateData
reducedate_data.selected = e.detail.value
reducedate_data.datelong = Date.parse(new Date(e.detail.value)) / 1000,
console.log('reduce_date', Date.parse(new Date(e.detail.value)))
this.setData({
reducedateData: reducedate_data
})
break;
}
// var educate_name = this.data.edu_array[e.detail.value]
// this.setData({
// edu_name: educate_name
// })
},
// goupload: function(e) {
// console.log(e)
// var that = this
// wx.chooseImage({
// sourceType: ['camera', 'album'],
// // sizeType: ['original'],
// count: 1,
// success: function(res) {
// console.log('success', res)
// that.setData({
// img_path: res.tempFilePaths[0]
// })
// that.uploadImage(that.data.img_path)
// }
// })
// },
// uploadImage: function(path) {
// var that = this
// wx.showLoading({
// title: '上传图片中...',
// })
// console.log('key', 'imagepath_' + path.substring(path.length - 10, path.length))
// wx.uploadFile({
// url: getApp().globalData.OSSUrl,
// filePath: path,
// name: 'file',
// formData: {
// 'key': 'imagepath_' + path.substring(path.length - 15, path.length),
// 'OSSAccessKeyId': OSSInit.access_key_id,
// 'policy': OSSInit.policy,
// 'signature': OSSInit.signature,
// 'callback': OSSInit.callback_body,
// 'x:access_token': OSSInit.callback_token,
// 'success_action_status': '200',
// },
// success: function(res) {
// console.log('uploadFile', res.data)
// if (res.statusCode == 200) {
// var data = JSON.parse(res.data)
// console.log('上传成功', res)
// that.oss_bucket = data.bucket
// } else {
// var title = '图片上传失败,请重新上传'
// if (res.statusCode == 413) {
// title = '图片体积过大,请选择较小图片上传'
// }
// wx.showModal({
// title: '上传失败',
// content: title,
// showCancel: false,
// confirmColor: '#4E8FE7'
// })
// }
// wx.hideLoading()
// },
// fail: function(err) {
// console.log('fail', err)
// wx.showModal({
// title: '上传失败',
// content: '图片上传失败,请重新上传',
// showCancel: false,
// confirmColor: '#4E8FE7'
// })
// wx.hideLoading()
// },
// complete(res) {
// console.log('complete', res)
// wx.hideLoading()
// }
// })
// },
showToast: function(data) {
if (data && data.length > 0) {
wx.showToast({
title: data,
icon: "none"
})
}
},
/**
* Lifecycle function--Called when page hide
*/
onHide: function() {
},
/**
* Lifecycle function--Called when page unload
*/
onUnload: function() {
},
/**
* Page event handler function--Called when user drop down
*/
onPullDownRefresh: function() {
},
/**
* Called when page reach bottom
*/
onReachBottom: function() {
},
/**
* Called when user click on the top right corner to share
*/
onShareAppMessage: function() {
}
})