Commit 8f19eb2577854c23d12e56ff887409a67631173f
1 parent
c7218aac
Update
Showing
6 changed files
with
62 additions
and
28 deletions
src/main/java/com/bsth/data/pinyin/PersionPinYin.java
| @@ -9,6 +9,11 @@ import com.fasterxml.jackson.annotation.JsonIgnore; | @@ -9,6 +9,11 @@ import com.fasterxml.jackson.annotation.JsonIgnore; | ||
| 9 | public class PersionPinYin { | 9 | public class PersionPinYin { |
| 10 | 10 | ||
| 11 | /** | 11 | /** |
| 12 | + * Id | ||
| 13 | + */ | ||
| 14 | + private Integer id; | ||
| 15 | + | ||
| 16 | + /** | ||
| 12 | * 工号 | 17 | * 工号 |
| 13 | */ | 18 | */ |
| 14 | private String workId; | 19 | private String workId; |
| @@ -87,4 +92,12 @@ public class PersionPinYin { | @@ -87,4 +92,12 @@ public class PersionPinYin { | ||
| 87 | public void setFgsCompanyId(String fgsCompanyId) { | 92 | public void setFgsCompanyId(String fgsCompanyId) { |
| 88 | this.fgsCompanyId = fgsCompanyId; | 93 | this.fgsCompanyId = fgsCompanyId; |
| 89 | } | 94 | } |
| 95 | + | ||
| 96 | + public Integer getId() { | ||
| 97 | + return id; | ||
| 98 | + } | ||
| 99 | + | ||
| 100 | + public void setId(Integer id) { | ||
| 101 | + this.id = id; | ||
| 102 | + } | ||
| 90 | } | 103 | } |
src/main/java/com/bsth/data/pinyin/PersionPinYinBuffer.java
| @@ -36,6 +36,7 @@ public class PersionPinYinBuffer { | @@ -36,6 +36,7 @@ public class PersionPinYinBuffer { | ||
| 36 | Collection<Personnel> list = BasicData.perMap.values(); | 36 | Collection<Personnel> list = BasicData.perMap.values(); |
| 37 | for(Personnel p : list){ | 37 | for(Personnel p : list){ |
| 38 | ppy = new PersionPinYin(); | 38 | ppy = new PersionPinYin(); |
| 39 | + ppy.setId(p.getId()); | ||
| 39 | ppy.setCompanyId(p.getCompanyCode()); | 40 | ppy.setCompanyId(p.getCompanyCode()); |
| 40 | ppy.setFgsCompanyId(p.getBrancheCompanyCode()); | 41 | ppy.setFgsCompanyId(p.getBrancheCompanyCode()); |
| 41 | ppy.setName(p.getPersonnelName()); | 42 | ppy.setName(p.getPersonnelName()); |
src/main/resources/static/pages/scheduleApp/module/common/main.js
| @@ -67,28 +67,48 @@ ScheduleApp.factory('DataStore', [ | @@ -67,28 +67,48 @@ ScheduleApp.factory('DataStore', [ | ||
| 67 | // 简拼数据 | 67 | // 简拼数据 |
| 68 | dataMap.cl = result.data.data; | 68 | dataMap.cl = result.data.data; |
| 69 | angular.forEach(result.data.data, function(obj) { | 69 | angular.forEach(result.data.data, function(obj) { |
| 70 | + //// 全拼 | ||
| 71 | + //obj["$fullChars"] = pinyin.getFullChars(obj.insideCode ? obj.insideCode: ""); | ||
| 72 | + //// 简拼 | ||
| 73 | + //obj["$camelChars"] = pinyin.getCamelChars(obj.insideCode ? obj.insideCode: ""); | ||
| 70 | // 全拼 | 74 | // 全拼 |
| 71 | - obj["$fullChars"] = pinyin.getFullChars(obj.insideCode ? obj.insideCode: ""); | 75 | + obj["$fullChars"] = obj.insideCode? obj.insideCode: ""; |
| 72 | // 简拼 | 76 | // 简拼 |
| 73 | - obj["$camelChars"] = pinyin.getCamelChars(obj.insideCode ? obj.insideCode: ""); | 77 | + obj["$camelChars"] = obj.insideCode? obj.insideCode: ""; |
| 74 | // 原值 | 78 | // 原值 |
| 75 | obj["$calcu_str"] = obj.insideCode? obj.insideCode: ""; | 79 | obj["$calcu_str"] = obj.insideCode? obj.insideCode: ""; |
| 76 | }); | 80 | }); |
| 77 | }); | 81 | }); |
| 78 | 82 | ||
| 83 | + //$http({ | ||
| 84 | + // method: 'GET', | ||
| 85 | + // url: '/ee/all' | ||
| 86 | + //}).then(function(result) { | ||
| 87 | + // // 简拼数据 | ||
| 88 | + // dataMap.ry = result.data.data; | ||
| 89 | + // angular.forEach(result.data.data, function(obj) { | ||
| 90 | + // // 全拼 | ||
| 91 | + // obj["$fullChars"] = pinyin.getFullChars(obj.personnelName + "-" + obj.jobCode); | ||
| 92 | + // // 简拼 | ||
| 93 | + // obj["$camelChars"] = pinyin.getCamelChars(obj.personnelName + "-" + obj.jobCode); | ||
| 94 | + // // 原值 | ||
| 95 | + // obj["$calcu_str"] = obj.personnelName + "-" + obj.jobCode; | ||
| 96 | + // }); | ||
| 97 | + //}); | ||
| 98 | + | ||
| 79 | $http({ | 99 | $http({ |
| 80 | method: 'GET', | 100 | method: 'GET', |
| 81 | - url: '/ee/all' | 101 | + url: '/personnel/all_py' |
| 82 | }).then(function(result) { | 102 | }).then(function(result) { |
| 83 | // 简拼数据 | 103 | // 简拼数据 |
| 84 | - dataMap.ry = result.data.data; | ||
| 85 | - angular.forEach(result.data.data, function(obj) { | 104 | + dataMap.ry = result.data; |
| 105 | + angular.forEach(result.data, function(obj) { | ||
| 86 | // 全拼 | 106 | // 全拼 |
| 87 | - obj["$fullChars"] = pinyin.getFullChars(obj.personnelName + "-" + obj.jobCode); | 107 | + obj["$fullChars"] = obj.fullChars; |
| 88 | // 简拼 | 108 | // 简拼 |
| 89 | - obj["$camelChars"] = pinyin.getCamelChars(obj.personnelName + "-" + obj.jobCode); | 109 | + obj["$camelChars"] = obj.camelChars; |
| 90 | // 原值 | 110 | // 原值 |
| 91 | - obj["$calcu_str"] = obj.personnelName + "-" + obj.jobCode; | 111 | + obj["$calcu_str"] = obj.name + "-" + obj.workId; |
| 92 | }); | 112 | }); |
| 93 | }); | 113 | }); |
| 94 | 114 |
src/main/resources/static/pages/scheduleApp/module/core/employeeConfig/edit.html
| @@ -84,9 +84,9 @@ | @@ -84,9 +84,9 @@ | ||
| 84 | icname="id" | 84 | icname="id" |
| 85 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 85 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 86 | iterobjname="item" | 86 | iterobjname="item" |
| 87 | - iterobjexp="item.personnelName + '<' + item.jobCode + '>'" | 87 | + iterobjexp="item.name + '<' + item.workId + '>'" |
| 88 | searchph="请输拼音..." | 88 | searchph="请输拼音..." |
| 89 | - searchexp="this.personnelName + '<' + this.jobCode + '>'" | 89 | + searchexp="this.name + '<' + this.workId + '>'" |
| 90 | required > | 90 | required > |
| 91 | </sa-Select5> | 91 | </sa-Select5> |
| 92 | <input type="hidden" name="jsy_h" ng-model="ctrl.employeeConfigForSave.jsy.id" | 92 | <input type="hidden" name="jsy_h" ng-model="ctrl.employeeConfigForSave.jsy.id" |
| @@ -116,9 +116,9 @@ | @@ -116,9 +116,9 @@ | ||
| 116 | icname="id" | 116 | icname="id" |
| 117 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 117 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 118 | iterobjname="item" | 118 | iterobjname="item" |
| 119 | - iterobjexp="item.personnelName + '<' + item.jobCode + '>'" | 119 | + iterobjexp="item.name + '<' + item.workId + '>'" |
| 120 | searchph="请输拼音..." | 120 | searchph="请输拼音..." |
| 121 | - searchexp="this.personnelName + '<' + this.jobCode + '>'" | 121 | + searchexp="this.name + '<' + this.workId + '>'" |
| 122 | > | 122 | > |
| 123 | </sa-Select5> | 123 | </sa-Select5> |
| 124 | <input type="hidden" name="spy_h" ng-model="ctrl.employeeConfigForSave.spy.id" | 124 | <input type="hidden" name="spy_h" ng-model="ctrl.employeeConfigForSave.spy.id" |
src/main/resources/static/pages/scheduleApp/module/core/employeeConfig/form.html
| @@ -84,9 +84,9 @@ | @@ -84,9 +84,9 @@ | ||
| 84 | icname="id" | 84 | icname="id" |
| 85 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 85 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 86 | iterobjname="item" | 86 | iterobjname="item" |
| 87 | - iterobjexp="item.personnelName + '<' + item.jobCode + '>'" | 87 | + iterobjexp="item.name + '<' + item.workId + '>'" |
| 88 | searchph="请输拼音..." | 88 | searchph="请输拼音..." |
| 89 | - searchexp="this.personnelName + '<' + this.jobCode + '>'" | 89 | + searchexp="this.name + '<' + this.workId + '>'" |
| 90 | required > | 90 | required > |
| 91 | </sa-Select5> | 91 | </sa-Select5> |
| 92 | <input type="hidden" name="jsy_h" ng-model="ctrl.employeeConfigForSave.jsy.id" | 92 | <input type="hidden" name="jsy_h" ng-model="ctrl.employeeConfigForSave.jsy.id" |
| @@ -116,9 +116,9 @@ | @@ -116,9 +116,9 @@ | ||
| 116 | icname="id" | 116 | icname="id" |
| 117 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 117 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 118 | iterobjname="item" | 118 | iterobjname="item" |
| 119 | - iterobjexp="item.personnelName + '<' + item.jobCode + '>'" | 119 | + iterobjexp="item.name + '<' + item.workId + '>'" |
| 120 | searchph="请输拼音..." | 120 | searchph="请输拼音..." |
| 121 | - searchexp="this.personnelName + '<' + this.jobCode + '>'" | 121 | + searchexp="this.name + '<' + this.workId + '>'" |
| 122 | > | 122 | > |
| 123 | </sa-Select5> | 123 | </sa-Select5> |
| 124 | <input type="hidden" name="spy_h" ng-model="ctrl.employeeConfigForSave.spy.id" | 124 | <input type="hidden" name="spy_h" ng-model="ctrl.employeeConfigForSave.spy.id" |
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit.html
| @@ -96,9 +96,9 @@ | @@ -96,9 +96,9 @@ | ||
| 96 | icname="id" | 96 | icname="id" |
| 97 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 97 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 98 | iterobjname="item" | 98 | iterobjname="item" |
| 99 | - iterobjexp="item.personnelName + '(' + item.jobCode + ')'" | 99 | + iterobjexp="item.name + '(' + item.workId + ')'" |
| 100 | searchph="请输拼音..." | 100 | searchph="请输拼音..." |
| 101 | - searchexp="this.personnelName" | 101 | + searchexp="this.name" |
| 102 | required | 102 | required |
| 103 | > | 103 | > |
| 104 | </sa-Select5> | 104 | </sa-Select5> |
| @@ -119,9 +119,9 @@ | @@ -119,9 +119,9 @@ | ||
| 119 | icname="id" | 119 | icname="id" |
| 120 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 120 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 121 | iterobjname="item" | 121 | iterobjname="item" |
| 122 | - iterobjexp="item.personnelName + '(' + item.jobCode + ')'" | 122 | + iterobjexp="item.name + '(' + item.workId + ')'" |
| 123 | searchph="请输拼音..." | 123 | searchph="请输拼音..." |
| 124 | - searchexp="this.personnelName" | 124 | + searchexp="this.name" |
| 125 | > | 125 | > |
| 126 | </sa-Select5> | 126 | </sa-Select5> |
| 127 | </div> | 127 | </div> |
| @@ -137,9 +137,9 @@ | @@ -137,9 +137,9 @@ | ||
| 137 | icname="id" | 137 | icname="id" |
| 138 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 138 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 139 | iterobjname="item" | 139 | iterobjname="item" |
| 140 | - iterobjexp="item.personnelName + '(' + item.jobCode + ')'" | 140 | + iterobjexp="item.name + '(' + item.workId + ')'" |
| 141 | searchph="请输拼音..." | 141 | searchph="请输拼音..." |
| 142 | - searchexp="this.personnelName" | 142 | + searchexp="this.name" |
| 143 | > | 143 | > |
| 144 | </sa-Select5> | 144 | </sa-Select5> |
| 145 | </div> | 145 | </div> |
| @@ -155,9 +155,9 @@ | @@ -155,9 +155,9 @@ | ||
| 155 | icname="id" | 155 | icname="id" |
| 156 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 156 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 157 | iterobjname="item" | 157 | iterobjname="item" |
| 158 | - iterobjexp="item.personnelName + '(' + item.jobCode + ')'" | 158 | + iterobjexp="item.name + '(' + item.workId + ')'" |
| 159 | searchph="请输拼音..." | 159 | searchph="请输拼音..." |
| 160 | - searchexp="this.personnelName" | 160 | + searchexp="this.name" |
| 161 | > | 161 | > |
| 162 | </sa-Select5> | 162 | </sa-Select5> |
| 163 | </div> | 163 | </div> |
| @@ -173,9 +173,9 @@ | @@ -173,9 +173,9 @@ | ||
| 173 | icname="id" | 173 | icname="id" |
| 174 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 174 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 175 | iterobjname="item" | 175 | iterobjname="item" |
| 176 | - iterobjexp="item.personnelName + '(' + item.jobCode + ')'" | 176 | + iterobjexp="item.name + '(' + item.workId + ')'" |
| 177 | searchph="请输拼音..." | 177 | searchph="请输拼音..." |
| 178 | - searchexp="this.personnelName" | 178 | + searchexp="this.name" |
| 179 | > | 179 | > |
| 180 | </sa-Select5> | 180 | </sa-Select5> |
| 181 | </div> | 181 | </div> |
| @@ -191,9 +191,9 @@ | @@ -191,9 +191,9 @@ | ||
| 191 | icname="id" | 191 | icname="id" |
| 192 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" | 192 | dsparams="{{ {type: 'local', param: 'ry' } | json }}" |
| 193 | iterobjname="item" | 193 | iterobjname="item" |
| 194 | - iterobjexp="item.personnelName + '(' + item.jobCode + ')'" | 194 | + iterobjexp="item.name + '(' + item.workId + ')'" |
| 195 | searchph="请输拼音..." | 195 | searchph="请输拼音..." |
| 196 | - searchexp="this.personnelName" | 196 | + searchexp="this.name" |
| 197 | > | 197 | > |
| 198 | </sa-Select5> | 198 | </sa-Select5> |
| 199 | </div> | 199 | </div> |