对“是否雇员”字段为“其他”时的场景做了调整。新增了一个字段 ”其他情况说明“
This commit is contained in:
parent
c6633005aa
commit
9af6178636
|
|
@ -62,6 +62,11 @@ public class EmployeeDeclareRequest {
|
|||
// *任职受雇类型
|
||||
EmploymentTypeEnum employmentTypeEnum = SalaryEnumUtil.enumMatchByValue(employeeDeclare.getEmploymentType(), EmploymentTypeEnum.class);
|
||||
employeeInfoMap.put("sfgy", employmentTypeEnum == null ? "" : employmentTypeEnum.getDefaultLabel());
|
||||
//其他情况说明“qtqksm”,有3个选择的值,可选择"扣缴申报利息股息红利所得”、“扣缴申报偶然所得”、”申报其他所得”
|
||||
//一般劳务所得处理,可以统一用”申报其他所得”作为默认就好
|
||||
if (employmentTypeEnum == EmploymentTypeEnum.OTHER) {
|
||||
employeeInfoMap.put("qtqksm", "申报其他所得");
|
||||
}
|
||||
// 入职年度就业情形
|
||||
employeeInfoMap.put("rzndjyqk", employeeDeclare.getEmploymentFirstYear());
|
||||
// *手机号码
|
||||
|
|
|
|||
Loading…
Reference in New Issue