zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.changhong.epc.tenant.controller.system.budget;
 
import com.changhong.epc.bean.tenant.system.budget.BudgetOrg;
import com.changhong.epc.bean.tenant.system.budget.extend.BudgetOrgExtend;
import com.changhong.epc.bean.tenant.system.budget.extend.BudgetOrgListExtend;
import com.changhong.epc.constter.base.BaseConst;
import com.changhong.epc.constter.system.UserInfo;
import com.changhong.epc.constter.tenant.TenantUrlConst;
import com.changhong.epc.rely.api.bean.Organization;
import com.changhong.epc.rely.api.bean.Organizations;
import com.changhong.epc.rely.api.bean.TenantsAndCompanys;
import com.changhong.epc.tenant.service.system.budget.BudgetConfigService;
import com.iemsoft.framework.cloud.core.thread.ThreadData;
import com.iemsoft.framework.cloud.core.tools.JSONTool;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
 
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
 
/**
 * 预算控制层
 * @author liush
 *
 */
@RestController
public class BudgetConfigController implements TenantUrlConst,BaseConst {
    @Resource
    private BudgetConfigService budgetConfigService;
    
    /**
     * 获取组织机构树
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_GETTREE)
    public List<Organization> getAll() {
        return budgetConfigService.getAll();
    }
    
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_GETUSER)
    public TenantsAndCompanys getOrgAndTenant(@RequestBody Map<String,String> map) {
        ThreadData.set(OPEN_ID, map.get("openId"));
        return budgetConfigService.findTenantsAndCompanys();
    }
    
    /**
     * 批量插入预算
     * @param budgetList
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_INSERTLIST)
    public Integer insertBudgetList(@RequestBody BudgetOrgExtend budgetList) {
        return budgetConfigService.insertBudgetList(budgetList.getBudgetList());
    }
    
    /**
     * 获取预算列表
     * @param budgetOrg
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_GETLIST)
    public List<BudgetOrgExtend> getBudgetOrgList(@RequestBody BudgetOrg budgetOrg) {
        return budgetConfigService.getBudgetOrgList(budgetOrg);
    }
    
    /**
     * 批量物理删除预算
     * @param map
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_DELETELIST)
    public Integer deleteBudgetList(@RequestBody Map<String,Object> map) {
        return budgetConfigService.deleteBudgetList(map);
    }
    
    /**
     * 批量逻辑删除预算
     * @param map
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_DELETEBYDATASTART)
    public Integer deleteBudgetListByDataStart(@RequestBody Map<String,Object> map) {
        return budgetConfigService.deleteBudgetListByDataStart(map);
    }
    
    /**
     * 预算回显信息获取
     * @param budgetOrg
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_GETBUDGETS)
    public BudgetOrgListExtend getBudgetList(@RequestBody BudgetOrg budgetOrg) {
        BudgetOrgListExtend budgetOrgListExtend = new BudgetOrgListExtend();
        List<Integer> cIdList = budgetConfigService.getCidList(budgetOrg);
        List<String> orgCodeList = budgetConfigService.getOrgCodeList(budgetOrg);
        List<String> parentOrgCodeList = budgetConfigService.getParentOrgCodeList(budgetOrg);
        budgetOrgListExtend.setCIdList(cIdList);
        budgetOrgListExtend.setOrgCodeList(orgCodeList);
        budgetOrgListExtend.setParentOrgCodeList(parentOrgCodeList);
        return budgetOrgListExtend;
    }
    
    /**
     * 依据部门orgCode和费用类型cId查询对应的占用预算部门
     * @param budgetOrg
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_GETPARENTORG)
    public List<String> getParentBudgetOrg(@RequestBody BudgetOrg budgetOrg) {
        return budgetConfigService.getParentBudgetOrg(budgetOrg);
        
    }
    
    /**
     * 根据当前组织机构查询所有下级
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_GETPARENTORGS)
    public Organizations getOrgsOfTree(@RequestBody Organization org ){
        return budgetConfigService.getOrgsOfTree(org.getCode());
    }
    
    /**
     * 查询当前用户所有信息
     * @return
     */
    @PostMapping(REST_ORG_GETTENANT)
    public UserInfo  findOrganizationByTenantId(){
        return budgetConfigService.findOrganizationByTenantId();
    }        
    
    /**
     * 查询租户多公司多租户
     */
    @PostMapping(RESR_ORG_TENANTORCOMPANY)
    public TenantsAndCompanys findTenantsAndCompanys(){
//        String a = "{\"tenants\":[{\"code\":\"RS0003\",\"companys\":[{\"code\":\"8600\",\"hotInfoCompanyId\":\"61\",\"id\":7,\"name\":\"国务院\",\"orgCode\":\"010210001\",\"tenantId\":100000001}],\"id\":100000001,\"name\":\"费用云演示\",\"orgCode\":\"01021\"}]}";
//        return JSONTool.toObj(a,TenantsAndCompanys.class);
        return budgetConfigService.findTenantsAndCompanys();
    }
    
    /**
     * 查询所有一级部门
     */
    @PostMapping(RESR_ORG_GETONE)
    public List<Organization> getOne(@RequestBody Map<String ,Object > map ) {
        ThreadData.set(COMPANY_ID, Integer.parseInt(java.util.Objects.toString(map.get("companyId"),"0")));
        return budgetConfigService.getOne();
    }
    
    @PostMapping(RESR_GETUSERCODE)
    public UserInfo getUserCode(@RequestBody UserInfo userInfo) {
        return budgetConfigService.getUserCode(userInfo);
    }
    
    /**
     * 添加人员
     */
    @PostMapping(ADD_USERINFO)
    public int addUserInfo(@RequestBody Map<String,Object> user){
        budgetConfigService.addUserInfo(user);
        return 1;
    }
    
    /**
     * 修改用户姓名
     */
    @PostMapping(UPDATE_USERINFO)
    public int updateUserName(@RequestBody Map<String,Object> user){
        return budgetConfigService.updateUserName(user);
    }
 
    /**
     * 同步组织机构
     */
    @PostMapping(REST_TENANT_SYNORG)
    public int synOrg(@RequestBody Map<String,Object> user){
        return budgetConfigService.synOrg();
    }
 
    /**
     * 判断当前部门是否可以占用上级预算
     */
    @PostMapping(REST_TENANT_SYSTEM_BUDGETCONFIG_CHECKOCCUPATION)
    public Integer checkOccupation(@RequestBody BudgetOrg budgetOrg){
        return budgetConfigService.checkOccupation(budgetOrg);
    }
 
}