PermissionExplorer.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. MWF.xDesktop.requireApp("Attendance", "Explorer", null, false);
  2. MWF.xDesktop.requireApp("Template", "MDomItem", null, false);
  3. MWF.xDesktop.requireApp("Selector", "package", null, false);
  4. MWF.xApplication.Attendance.PermissionExplorer = new Class({
  5. Extends: MWF.xApplication.Attendance.Explorer,
  6. Implements: [Options, Events],
  7. initialize: function(node, app, actions, options){
  8. this.setOptions(options);
  9. this.app = app;
  10. this.path = "../x_component_Attendance/$PermissionExplorer/";
  11. this.cssPath = "../x_component_Attendance/$PermissionExplorer/"+this.options.style+"/css.wcss";
  12. this._loadCss();
  13. this.actions = actions;
  14. this.node = $(node);
  15. this.initData();
  16. if (!this.personActions) this.personActions = new MWF.xAction.org.express.RestActions();
  17. },
  18. loadView : function(){
  19. this.view = new MWF.xApplication.Attendance.PermissionExplorer.View(this.elementContentNode, this.app,this, this.viewData, this.options.searchKey );
  20. this.view.load();
  21. this.setContentSize();
  22. },
  23. createDocument: function(){
  24. if(this.view)this.view._createDocument();
  25. }
  26. });
  27. MWF.xApplication.Attendance.PermissionExplorer.View = new Class({
  28. Extends: MWF.xApplication.Attendance.Explorer.View,
  29. _createItem: function(data){
  30. return new MWF.xApplication.Attendance.PermissionExplorer.Document(this.table, data, this.explorer, this);
  31. },
  32. _getCurrentPageData: function(callback, count){
  33. this.actions.listPermission(function(json){
  34. if (callback) callback(json);
  35. });
  36. },
  37. _removeDocument: function(document, all){
  38. this.actions.deletePermission(document.id, function(json){
  39. this.explorer.view.reload();
  40. this.app.notice(this.app.lp.deleteDocumentOK, "success");
  41. }.bind(this));
  42. },
  43. _createDocument: function(){
  44. var permission = new MWF.xApplication.Attendance.PermissionExplorer.Permission(this.explorer);
  45. permission.create();
  46. },
  47. _openDocument: function( documentData ){
  48. var permission = new MWF.xApplication.Attendance.PermissionExplorer.Permission(this.explorer, documentData );
  49. permission.edit();
  50. }
  51. });
  52. MWF.xApplication.Attendance.PermissionExplorer.Document = new Class({
  53. Extends: MWF.xApplication.Attendance.Explorer.Document
  54. });
  55. MWF.xApplication.Attendance.PermissionExplorer.Permission = new Class({
  56. Extends: MWF.xApplication.Attendance.Explorer.PopupForm,
  57. options : {
  58. "width": 500,
  59. "height": 400,
  60. "hasTop" : true,
  61. "hasBottom" : true,
  62. "title" : MWF.xApplication.Attendance.LP.permission.setAttendancer,
  63. "draggable" : true,
  64. "closeAction" : true
  65. },
  66. _createTableContent: function(){
  67. var lp = this.app.lp.permission;
  68. var html = "<table width='100%' bordr='0' cellpadding='5' cellspacing='0' styles='formTable'>"+
  69. "<tr><td styles='formTabelTitle' lable='adminLevel'></td>"+
  70. " <td styles='formTableValue' item='adminLevel'></td></tr>" +
  71. "<tr><td styles='formTabelTitle' lable='unitName'></td>"+
  72. " <td styles='formTableValue' item='unitName'></td></tr>" +
  73. "<tr><td styles='formTabelTitle' lable='adminName'></td>"+
  74. " <td styles='formTableValue' item='adminName'></td></tr>" +
  75. "</table>";
  76. this.formTableArea.set("html",html);
  77. MWF.xDesktop.requireApp("Template", "MForm", function(){
  78. this.form = new MForm( this.formTableArea, this.data, {
  79. style: "attendance",
  80. isEdited : this.isEdited || this.isNew,
  81. itemTemplate : {
  82. adminLevel : { text: lp.role, type : "select",
  83. "selectText" : lp.roleSelectText,
  84. "selectValue" : ["COMPANY","DEPT"]
  85. },
  86. unitName : { text: lp.unit, type : "org", orgType:"unit",notEmpty:true },
  87. adminName : { text: lp.personName, type : "org", orgType:"person" ,notEmpty:true }
  88. }
  89. }, this.app);
  90. this.form.load();
  91. }.bind(this), true);
  92. },
  93. _ok: function( data, callback ){
  94. this.app.restActions.savePermission(data, function(json){
  95. if( callback )callback(json);
  96. }.bind(this));
  97. }
  98. });
  99. //
  100. //MWF.xApplication.Attendance.PermissionExplorer.Permission2 = new Class({
  101. // Extends: MWF.widget.Common,
  102. // options: {
  103. // "width": "500",
  104. // "height": "400"
  105. // },
  106. // initialize: function( explorer, data ){
  107. // this.explorer = explorer;
  108. // this.app = explorer.app;
  109. // this.data = data || {};
  110. // this.css = this.explorer.css;
  111. //
  112. // this.load();
  113. // },
  114. // load: function(){
  115. // if( this.data.unitName )this.data.unit = this.data.unitName;
  116. // if( this.data.adminName )this.data.personName = this.data.adminName;
  117. // if( this.data.adminLevel )this.data.role = this.data.adminLevel;
  118. // },
  119. //
  120. // open: function(e){
  121. // this.isNew = false;
  122. // this.isEdited = false;
  123. // },
  124. // create: function(){
  125. // this.isNew = true;
  126. // this._open();
  127. // },
  128. // edit: function(){
  129. // this.isEdited = true;
  130. // this._open();
  131. // },
  132. // _open : function(){
  133. // this.createMarkNode = new Element("div", {
  134. // "styles": this.css.createMarkNode,
  135. // "events": {
  136. // "mouseover": function(e){e.stopPropagation();},
  137. // "mouseout": function(e){e.stopPropagation();}
  138. // }
  139. // }).inject(this.app.content, "after");
  140. //
  141. // this.createAreaNode = new Element("div", {
  142. // "styles": this.css.createAreaNode
  143. // });
  144. //
  145. // this.createNode();
  146. //
  147. // this.createAreaNode.inject(this.createMarkNode, "after");
  148. // this.createAreaNode.fade("in");
  149. //
  150. // this.personName.focus();
  151. //
  152. // this.setCreateNodeSize();
  153. // this.setCreateNodeSizeFun = this.setCreateNodeSize.bind(this);
  154. // this.addEvent("resize", this.setCreateNodeSizeFun);
  155. // },
  156. // createNode: function(){
  157. // var _self = this;
  158. // this.createNode = new Element("div", {
  159. // "styles": this.css.createNode
  160. // }).inject(this.createAreaNode);
  161. //
  162. //
  163. // this.createIconNode = new Element("div", {
  164. // "styles": this.isNew ? this.css.createNewNode : this.css.createIconNode
  165. // }).inject(this.createNode);
  166. //
  167. //
  168. // this.createFormNode = new Element("div", {
  169. // "styles": this.css.createFormNode
  170. // }).inject(this.createNode);
  171. //
  172. // var lp = this.app.lp.permission;
  173. //
  174. // var inputStyle = "width: 99%; border:1px solid #999; background-color:#FFF; border-radius: 3px; box-shadow: 0px 0px 6px #CCC;height: 26px;";
  175. // var inputPersonStyle = "width: 99%; border:1px solid #999; background-color:#FFF; border-radius: 3px; box-shadow: 0px 0px 6px #CCC;height: 26px;"+
  176. // "background : url(../x_component_Attendance/$PermissionExplorer/default/icon/selectperson.png) 98% center no-repeat";
  177. //
  178. // //+(!this.isNew && !this.isEdited ? "" :
  179. // // ("<input type='text' id='role' " + "style='" + inputStyle +"'" + " value='" + ( this.data && this.data.role ? this.data.role : "") + "'/>")) +
  180. //
  181. // var html = "<table width='100%' height='200' border='0' cellPadding='0' cellSpacing='0'>" +
  182. // "<tr>"+
  183. // "<td colspan='2' style='height: 50px; line-height: 50px; text-align: center; min-width: 80px; font-size:18px;font-weight: bold;'>" + lp.setAttendancer + "</td>" +
  184. // "</tr>" +
  185. // "<tr>"+
  186. // "<td style='height: 30px; line-height: 30px; text-align: left; min-width: 80px; width:25%'>" + lp.role + ":</td>" +
  187. // "<td style='; text-align: left;' id='roleArea'></td>"+
  188. // "</tr>" +
  189. // "<tr id='unitArea'>" +
  190. // "<td style='height: 30px; line-height: 30px; text-align: left' >"+lp.unit+":</td>" +
  191. // "<td style='; text-align: right;'>" +
  192. // (!this.isNew && !this.isEdited ? "" :
  193. // ("<input type='text' id='unit' " + "style='" + inputPersonStyle +"'" + " value='" + ( this.data && this.data.unit ? this.data.unit : "") + "'/>")) +
  194. // "</td>" +
  195. // "</tr>" +
  196. // "<tr>"+
  197. // "<td style='height: 30px; line-height: 30px; text-align: left'>"+lp.personName+":</td>" +
  198. // "<td style='text-align: right;'>"+
  199. // (!this.isNew && !this.isEdited ? "" :
  200. // ("<input type='text' id='personName' " + "style='" + inputPersonStyle +"'" + " value='" + ( this.data && this.data.personName ? this.data.personName : "") + "'/>")) +
  201. // "</td>" +
  202. // "</tr>" +
  203. // "</table>";
  204. // this.createFormNode.set("html", html);
  205. //
  206. // this.personName = this.createFormNode.getElement("#personName");
  207. // this.unit = this.createFormNode.getElement("#unit");
  208. // this.roleArea = this.createFormNode.getElement("#roleArea");
  209. // this.role = new MDomItem( this.roleArea, {
  210. // "name" : "role",
  211. // "type" : "select",
  212. // "value" : this.data.role || "DEPT",
  213. // "selectText" : ["公司管理员","部门管理员"],
  214. // "selectValue" : ["COMPANY","DEPT"],
  215. // "style" : {"text-align":"left"}
  216. // }, true, this.app );
  217. // this.role.load();
  218. //
  219. // this.personName.addEvent("click",function(){
  220. // this.selecePerson()
  221. // }.bind(this))
  222. // this.unit.addEvent("click",function(){
  223. // this.selectUnit( this.role.get("value") )
  224. // }.bind(this))
  225. //
  226. // this.cancelActionNode = new Element("div", {
  227. // "styles": this.css.createCancelActionNode,
  228. // "text": this.app.lp.cancel
  229. // }).inject(this.createFormNode);
  230. // this.createOkActionNode = new Element("div", {
  231. // "styles": this.css.createOkActionNode,
  232. // "text": this.app.lp.ok
  233. // }).inject(this.createFormNode);
  234. //
  235. // this.cancelActionNode.addEvent("click", function(e){
  236. // this.cancelCreate(e);
  237. // }.bind(this));
  238. // this.createOkActionNode.addEvent("click", function(e){
  239. // this.okCreate(e);
  240. // }.bind(this));
  241. // },
  242. //
  243. // setCreateNodeSize: function (width, height, top, left) {
  244. // if (!width)width = this.options && this.options.width ? this.options.width : "50%"
  245. // if (!height)height = this.options && this.options.height ? this.options.height : "50%"
  246. // if (!top) top = this.options && this.options.top ? this.options.top : 0;
  247. // if (!left) left = this.options && this.options.left ? this.options.left : 0;
  248. //
  249. // var allSize = this.app.content.getSize();
  250. // var limitWidth = allSize.x; //window.screen.width
  251. // var limitHeight = allSize.y; //window.screen.height
  252. //
  253. // "string" == typeof width && (1 < width.length && "%" == width.substr(width.length - 1, 1)) && (width = parseInt(limitWidth * parseInt(width, 10) / 100, 10));
  254. // "string" == typeof height && (1 < height.length && "%" == height.substr(height.length - 1, 1)) && (height = parseInt(limitHeight * parseInt(height, 10) / 100, 10));
  255. // 300 > width && (width = 300);
  256. // 220 > height && (height = 220);
  257. // top = top || parseInt((limitHeight - height) / 2, 10);
  258. // left = left || parseInt((limitWidth - width) / 2, 10);
  259. //
  260. // this.createAreaNode.setStyles({
  261. // "width": "" + width + "px",
  262. // "height": "" + height + "px",
  263. // "top": "" + top + "px",
  264. // "left": "" + left + "px"
  265. // });
  266. //
  267. // this.createNode.setStyles({
  268. // "width": "" + width + "px",
  269. // "height": "" + height + "px"
  270. // });
  271. //
  272. // var iconSize = this.createIconNode ? this.createIconNode.getSize() : {x: 0, y: 0};
  273. // var topSize = this.formTopNode ? this.formTopNode.getSize() : {x: 0, y: 0};
  274. // var bottomSize = this.formBottomNode ? this.formBottomNode.getSize() : {x: 0, y: 0};
  275. //
  276. // var contentHeight = height - iconSize.y - topSize.y - bottomSize.y;
  277. // //var formMargin = formHeight -iconSize.y;
  278. // this.createFormNode.setStyles({
  279. // "height": "" + contentHeight + "px"
  280. // });
  281. // },
  282. // cancelCreate: function(e){
  283. // var _self = this;
  284. // if ( this.isNew && this.personName.get("value") ){
  285. // this.app.confirm("warn", e,
  286. // this.app.lp.create_cancel_title,
  287. // this.app.lp.create_cancel, "320px", "100px",
  288. // function(){
  289. // _self.createMarkNode.destroy();
  290. // _self.createAreaNode.destroy();
  291. // this.close();
  292. // },function(){
  293. // this.close();
  294. // }
  295. // );
  296. // }else{
  297. // this.createMarkNode.destroy();
  298. // this.createAreaNode.destroy();
  299. // delete _self;
  300. // }
  301. // },
  302. // okCreate: function(e){
  303. // var data = {
  304. // "id" : this.data.id || null,
  305. // "unitName": this.unit.get("value"),
  306. // //"organizationOu" : this.unit.get("value")=="" ? "" : this.data.organizationOu,
  307. // "adminName": this.personName.get("value"),
  308. // "adminLevel": this.role.getValue()
  309. // };
  310. // if (data.adminName ){
  311. // this.app.restActions.savePermission(data, function(json){
  312. // if( json.type == "ERROR" ){
  313. // this.app.notice( json.message , "error");
  314. // }else{
  315. // this.createMarkNode.destroy();
  316. // this.createAreaNode.destroy();
  317. // if(this.explorer.view)this.explorer.view.reload();
  318. // this.app.notice( this.isNew ? this.app.lp.createSuccess : this.app.lp.updateSuccess , "success");
  319. // }
  320. //
  321. // // this.app.processConfig();
  322. // }.bind(this));
  323. // }else{
  324. // this.adminName.setStyle("border-color", "red");
  325. // this.adminName.focus();
  326. // this.app.notice( this.app.lp.inputName, "error");
  327. // }
  328. // },
  329. // selecePerson: function(){
  330. // var options = {
  331. // "type": "person",
  332. // "title": "设置管理员",
  333. // "count" : "1",
  334. // "values": [this.data.personName] || [],
  335. // "onComplete": function(items){
  336. // this.data.personName = [];
  337. // items.each(function(item){
  338. // this.data.personName.push(item.data.name);
  339. // }.bind(this));
  340. // this.personName.set("value",this.data.personName);
  341. // }.bind(this)
  342. // };
  343. // var selector = new MWF.O2Selector(this.app.content, options);
  344. // },
  345. // selectUnit: function( u ){
  346. // var options = {
  347. // "type": u=="COMPANY" ? "topUnit" : "unit",
  348. // "title": u=="COMPANY" ? "选择公司":"选择部门",
  349. // "count" : "1",
  350. // "values": [this.data.unit] || [],
  351. // "onComplete": function(items){
  352. // this.data.unit = [];
  353. // items.each(function(item){
  354. // this.data.unit.push(item.data.name);
  355. // }.bind(this));
  356. // this.unit.set("value",this.data.unit);
  357. // }.bind(this)
  358. // };
  359. // var selector = new MWF.O2Selector(this.app.content, options);
  360. // }
  361. //});