Attachment.js 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. MWF.xDesktop.requireApp("process.Xform", "$Module", null, false);
  2. MWF.require("MWF.widget.AttachmentController", null, false);
  3. MWF.xApplication.process.Xform.AttachmentController = new Class({
  4. Extends: MWF.widget.ATTER,
  5. "options": {
  6. "officeFiles": ["doc", "docx", "dotx", "dot", "xls", "xlsx", "xlsm", "xlt", "xltx", "pptx", "ppt", "pot", "potx", "potm", "pdf"],
  7. "checkTextEnable": true
  8. },
  9. checkAttachmentDeleteAction: function () {
  10. if (this.options.readonly) {
  11. this.setAttachmentsAction("delete", false);
  12. return false;
  13. }
  14. if (this.options.isDeleteOption !== "n") {
  15. if (this.attachments.length) {
  16. var user = layout.session.user.distinguishedName;
  17. for (var i = 0; i < this.attachments.length; i++) {
  18. var flag = true;
  19. var att = this.attachments[i];
  20. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  21. if (this.options.isDeleteOption === "o") {
  22. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  23. if (att.data.person !== layout.desktop.session.user.distinguishedName) flag = false;
  24. } else if (this.options.isDeleteOption === "a") {
  25. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  26. if (att.data.activity !== this.module.form.businessData.activity.id) flag = false;
  27. } else if (this.options.isDeleteOption === "ao") {
  28. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  29. if ((att.data.activity !== this.module.form.businessData.activity.id) || (att.data.person !== layout.desktop.session.user.distinguishedName)) flag = false;
  30. } else {
  31. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  32. }
  33. if (flag) {
  34. this.setAttachmentAction(att, "delete", true);
  35. } else {
  36. this.setAttachmentAction(att, "delete", false);
  37. }
  38. }
  39. }
  40. } else {
  41. this.setAttachmentsAction("delete", false);
  42. }
  43. },
  44. checkDeleteAction: function () {
  45. this.checkAttachmentDeleteAction();
  46. if (this.options.readonly) {
  47. this.setActionDisabled(this.deleteAction);
  48. this.setActionDisabled(this.min_deleteAction);
  49. return false;
  50. }
  51. if (this.options.isDeleteOption !== "n") {
  52. if (this.selectedAttachments.length) {
  53. var user = layout.session.user.distinguishedName;
  54. var flag = true;
  55. if (this.options.isDeleteOption === "o") {
  56. for (var i = 0; i < this.selectedAttachments.length; i++) {
  57. var att = this.selectedAttachments[i];
  58. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  59. if (!att.data.control.allowEdit && att.data.person !== user) {
  60. flag = false;
  61. break;
  62. }
  63. if (att.data.person !== layout.desktop.session.user.distinguishedName) {
  64. flag = false;
  65. break;
  66. }
  67. }
  68. } else if (this.options.isDeleteOption === "a") {
  69. for (var i = 0; i < this.selectedAttachments.length; i++) {
  70. var att = this.selectedAttachments[i];
  71. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  72. if (!att.data.control.allowEdit && att.data.person !== user) {
  73. flag = false;
  74. break;
  75. }
  76. if (att.data.activity !== this.module.form.businessData.activity.id) {
  77. flag = false;
  78. break;
  79. }
  80. }
  81. } else if (this.options.isDeleteOption === "ao") {
  82. for (var i = 0; i < this.selectedAttachments.length; i++) {
  83. var att = this.selectedAttachments[i];
  84. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  85. if (!att.data.control.allowEdit && att.data.person !== user) {
  86. flag = false;
  87. break;
  88. }
  89. if ((att.data.activity !== this.module.form.businessData.activity.id) || (att.data.person !== layout.desktop.session.user.distinguishedName)) {
  90. flag = false;
  91. break;
  92. }
  93. }
  94. } else {
  95. for (var i = 0; i < this.selectedAttachments.length; i++) {
  96. var att = this.selectedAttachments[i];
  97. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  98. if (!att.data.control.allowEdit && att.data.person !== user) {
  99. flag = false;
  100. break;
  101. }
  102. }
  103. }
  104. if (flag) {
  105. this.setActionEnabled(this.deleteAction);
  106. this.setActionEnabled(this.min_deleteAction);
  107. } else {
  108. this.setActionDisabled(this.deleteAction);
  109. this.setActionDisabled(this.min_deleteAction);
  110. }
  111. } else {
  112. this.setActionDisabled(this.deleteAction);
  113. this.setActionDisabled(this.min_deleteAction);
  114. }
  115. } else {
  116. // if (!this.options.isDelete){
  117. this.setActionDisabled(this.deleteAction);
  118. this.setActionDisabled(this.min_deleteAction);
  119. // }else{
  120. // if (this.selectedAttachments.length){
  121. // this.setActionEnabled(this.deleteAction);
  122. // this.setActionEnabled(this.min_deleteAction);
  123. // }else{
  124. // this.setActionDisabled(this.deleteAction);
  125. // this.setActionDisabled(this.min_deleteAction);
  126. // }
  127. // }
  128. }
  129. },
  130. isAttDeleteAvailable: function (att) {
  131. if (this.options.readonly) return false;
  132. if (this.options.toolbarGroupHidden.contains("edit")) return false;
  133. if (this.options.isDeleteOption === "n") return false;
  134. var user = layout.session.user.distinguishedName;
  135. var flag = true;
  136. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  137. if (this.options.isDeleteOption === "o") {
  138. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  139. if (att.data.person !== layout.desktop.session.user.distinguishedName) flag = false;
  140. } else if (this.options.isDeleteOption === "a") {
  141. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  142. if (att.data.activity !== this.module.form.businessData.activity.id) flag = false;
  143. } else if (this.options.isDeleteOption === "ao") {
  144. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  145. if ((att.data.activity !== this.module.form.businessData.activity.id) || (att.data.person !== layout.desktop.session.user.distinguishedName)) flag = false;
  146. } else {
  147. if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
  148. }
  149. return flag;
  150. },
  151. openInOfficeControl: function (att, office) {
  152. if (office) {
  153. if (!office.openedAttachment || office.openedAttachment.id !== att.id) {
  154. office.save();
  155. if (this.module.form.businessData.workCompleted) {
  156. MWF.Actions.get("x_processplatform_assemble_surface").getAttachmentWorkcompletedUrl(att.id, this.module.form.businessData.workCompleted.id, function (url) {
  157. office.openedAttachment = { "id": att.id, "site": this.module.json.name, "name": att.name };
  158. office.officeOCX.BeginOpenFromURL(url, true, this.readonly);
  159. }.bind(this));
  160. } else {
  161. MWF.Actions.get("x_processplatform_assemble_surface").getAttachmentUrl(att.id, this.module.form.businessData.work.id, function (url) {
  162. office.openedAttachment = { "id": att.id, "site": this.module.json.name, "name": att.name };
  163. office.officeOCX.BeginOpenFromURL(url, true, this.readonly);
  164. }.bind(this));
  165. }
  166. }
  167. }
  168. },
  169. checkReplaceAction: function () {
  170. if (this.options.isReplaceHidden) return;
  171. if (this.options.readonly) {
  172. this.setActionDisabled(this.replaceAction);
  173. this.setActionDisabled(this.min_replaceAction);
  174. return false;
  175. }
  176. if (this.options.isReplaceOption !== "n") {
  177. if (this.selectedAttachments.length && this.selectedAttachments.length === 1) {
  178. var att = this.selectedAttachments[0];
  179. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  180. var user = layout.session.user.distinguishedName;
  181. var flag = true;
  182. if (this.options.isReplaceOption === "o") {
  183. flag = att.data.person === layout.desktop.session.user.distinguishedName;
  184. }
  185. if (this.options.isReplaceOption === "a") {
  186. flag = att.data.activity === this.module.form.businessData.activity.id;
  187. }
  188. if (this.options.isReplaceOption === "ao") {
  189. flag = (att.data.person === layout.desktop.session.user.distinguishedName && att.data.activity === this.module.form.businessData.activity.id);
  190. }
  191. if (flag && !att.data.control.allowEdit && att.data.person !== user) {
  192. flag = false;
  193. }
  194. if (flag) {
  195. this.setActionEnabled(this.replaceAction);
  196. this.setActionEnabled(this.min_replaceAction);
  197. } else {
  198. this.setActionDisabled(this.replaceAction);
  199. this.setActionDisabled(this.min_replaceAction);
  200. }
  201. } else {
  202. this.setActionDisabled(this.replaceAction);
  203. this.setActionDisabled(this.min_replaceAction);
  204. }
  205. } else {
  206. // if (!this.options.isReplace){
  207. this.setActionDisabled(this.replaceAction);
  208. this.setActionDisabled(this.min_replaceAction);
  209. // }else{
  210. // if (this.selectedAttachments.length && this.selectedAttachments.length===1){
  211. // this.setActionEnabled(this.replaceAction);
  212. // this.setActionEnabled(this.min_replaceAction);
  213. // }else{
  214. // this.setActionDisabled(this.replaceAction);
  215. // this.setActionDisabled(this.min_replaceAction);
  216. // }
  217. // }
  218. }
  219. },
  220. replaceAttachment: function (e, node) {
  221. var att = this.selectedAttachments[0].data;
  222. if (this.module.json.isOpenInOffice && this.module.json.officeControlName && (this.options.officeFiles.indexOf(att.extension) !== -1)) {
  223. var office = this.module.form.all[this.module.json.officeControlName];
  224. if (office) {
  225. if (this.min_closeOfficeAction) this.setActionEnabled(this.min_closeOfficeAction);
  226. if (this.closeOfficeAction) this.setActionEnabled(this.closeOfficeAction);
  227. this.openInOfficeControl(att, office);
  228. } else {
  229. if (this.selectedAttachments.length && this.selectedAttachments.length == 1) {
  230. if (this.module) this.module.replaceAttachment(e, node, this.selectedAttachments[0]);
  231. }
  232. }
  233. } else {
  234. if (this.selectedAttachments.length && this.selectedAttachments.length == 1) {
  235. if (this.module) this.module.replaceAttachment(e, node, this.selectedAttachments[0]);
  236. }
  237. }
  238. },
  239. isAttReplaceAvailable: function (att) {
  240. if (this.options.readonly) return false;
  241. if (this.options.toolbarGroupHidden.contains("edit")) return false;
  242. if (this.options.isReplaceOption === "n") return false;
  243. var user = layout.session.user.distinguishedName;
  244. var flag = true;
  245. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  246. if (this.options.isReplaceOption === "o") {
  247. flag = att.data.person === layout.desktop.session.user.distinguishedName;
  248. }
  249. if (this.options.isReplaceOption === "a") {
  250. flag = att.data.activity === this.module.form.businessData.activity.id;
  251. }
  252. if (this.options.isReplaceOption === "ao") {
  253. flag = (att.data.person === layout.desktop.session.user.distinguishedName && att.data.activity === this.module.form.businessData.activity.id);
  254. }
  255. if (flag && !att.data.control.allowEdit && att.data.person !== user) {
  256. flag = false;
  257. }
  258. return flag;
  259. },
  260. //checkAttachmentOrderAction : function(){
  261. // if (this.options.readonly){
  262. // this.setAttachmentsAction("order", false );
  263. // return false;
  264. // }
  265. // if (this.attachments.length){
  266. // var user = layout.session.user.distinguishedName;
  267. // for (var i=0; i<this.attachments.length; i++){
  268. // var flag = true;
  269. //
  270. // var att = this.attachments[i];
  271. // if( !att.data.person && att.data.creatorUid )att.data.person = att.data.creatorUid;
  272. //
  273. // if ((!att.data.control.allowControl || !att.data.control.allowEdit) && att.data.person!==user){
  274. // flag = false;
  275. // }
  276. // if (flag){
  277. // this.setAttachmentAction(att, "order", true );
  278. // }else{
  279. // this.setAttachmentAction(att, "order", false );
  280. // }
  281. // }
  282. // }
  283. //},
  284. checkOrderAction: function () {
  285. //this.checkAttachmentOrderAction();
  286. if (this.options.readonly) {
  287. this.setActionDisabled(this.orderAction);
  288. this.setActionDisabled(this.min_orderAction);
  289. return false;
  290. }
  291. if (this.attachments.length && this.attachments.length > 1) {
  292. var flag = true;
  293. var user = layout.session.user.distinguishedName;
  294. for (var i = 0; i < this.attachments.length; i++) {
  295. var att = this.attachments[i];
  296. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  297. if ((!att.data.control.allowControl && !att.data.control.allowEdit) && att.data.person !== user) { //|| !att.data.control.allowEdit
  298. flag = false;
  299. break;
  300. }
  301. }
  302. if (flag) {
  303. this.setActionEnabled(this.orderAction);
  304. this.setActionEnabled(this.min_orderAction);
  305. } else {
  306. this.setActionDisabled(this.orderAction);
  307. this.setActionDisabled(this.min_orderAction);
  308. }
  309. //this.setActionEnabled(this.min_deleteAction);
  310. } else {
  311. this.setActionDisabled(this.orderAction);
  312. this.setActionDisabled(this.min_orderAction);
  313. //this.setActionDisabled(this.min_deleteAction);
  314. }
  315. },
  316. isAttOrderAvailable: function (att) {
  317. if (this.options.readonly) return false;
  318. if (this.options.toolbarGroupHidden.contains("config")) return false;
  319. var user = layout.session.user.distinguishedName;
  320. var flag = true;
  321. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  322. if ((!att.data.control.allowControl || !att.data.control.allowEdit) && att.data.person !== user) {
  323. flag = false;
  324. }
  325. return flag;
  326. },
  327. createTopNode: function () {
  328. if (this.options.title) {
  329. if (!this.titleNode) this.titleNode = new Element("div", { "styles": this.css.titleNode, "text": this.options.title }).inject(this.node);
  330. }
  331. if (!this.topNode) {
  332. this.topNode = new Element("div", { "styles": this.css.topNode }).inject(this.node);
  333. } else {
  334. this.topNode.empty();
  335. this.editActionBoxNode = null;
  336. this.editActionsGroupNode = null;
  337. this.topNode.setStyle("display", "");
  338. if (this.isHiddenTop) {
  339. //this.container.setStyle("height", this.container.getSize().y + 45 );
  340. //this.node.setStyle("height", this.node.getSize().y + 45 );
  341. if (this.oldContentScrollNodeHeight && this.contentScrollNode) {
  342. this.contentScrollNode.setStyle("min-height", this.oldContentScrollNodeHeight);
  343. this.oldContentScrollNodeHeight = null;
  344. }
  345. this.isHiddenTop = false;
  346. }
  347. }
  348. var hiddenGroup = this.options.toolbarGroupHidden;
  349. if (hiddenGroup.contains("edit") && hiddenGroup.contains("read") && hiddenGroup.contains("list") &&
  350. hiddenGroup.contains("view") && hiddenGroup.contains("config") &&
  351. !(this.module.json.isOpenInOffice && this.module.json.officeControlName)
  352. ) {
  353. if (this.contentScrollNode) {
  354. this.oldContentScrollNodeHeight = this.contentScrollNode.getStyle("min-height");
  355. this.contentScrollNode.setStyle("min-height", this.node.getStyle("min-height"));
  356. this.topNode.setStyle("display", "none");
  357. }
  358. this.isHiddenTop = true;
  359. }
  360. if (!hiddenGroup.contains("edit")) this.createEditGroupActions();
  361. if (!hiddenGroup.contains("read")) this.createReadGroupActions();
  362. if (!hiddenGroup.contains("list")) this.createListGroupActions();
  363. if (this.module.json.isOpenInOffice && this.module.json.officeControlName) this.createOfficeGroupActions();
  364. if (!hiddenGroup.contains("config")) this.createConfigGroupActions();
  365. if (!hiddenGroup.contains("view")) this.createViewGroupActions();
  366. this.checkActions();
  367. },
  368. checkActions: function () {
  369. // if (this.options.readonly){
  370. // this.setReadonly();
  371. // }else{
  372. this.checkUploadAction();
  373. this.checkDeleteAction();
  374. this.checkReplaceAction();
  375. //this.checkOfficeAction();
  376. this.checkDownloadAction();
  377. this.checkSizeAction();
  378. this.checkConfigAction();
  379. this.checkOrderAction();
  380. this.checkListStyleAction();
  381. // }
  382. },
  383. checkAttachmentConfigAction: function () {
  384. if (this.options.readonly) {
  385. this.setAttachmentsAction("config", false);
  386. return false;
  387. }
  388. if (this.attachments.length) {
  389. var user = layout.session.user.distinguishedName;
  390. for (var i = 0; i < this.attachments.length; i++) {
  391. var flag = true;
  392. var att = this.attachments[i];
  393. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  394. if ((!att.data.control.allowControl) && att.data.person !== user) { // || !att.data.control.allowEdit
  395. flag = false;
  396. }
  397. if (flag) {
  398. this.setAttachmentAction(att, "config", true);
  399. } else {
  400. this.setAttachmentAction(att, "config", false);
  401. }
  402. }
  403. }
  404. },
  405. checkConfigAction: function () {
  406. this.checkAttachmentConfigAction();
  407. if (this.options.readonly) {
  408. this.setActionDisabled(this.configAction);
  409. if (this.checkTextAction) this.setActionDisabled(this.checkTextAction);
  410. return false;
  411. }
  412. if (this.selectedAttachments.length) {
  413. var flag = true;
  414. var user = layout.session.user.distinguishedName;
  415. for (var i = 0; i < this.selectedAttachments.length; i++) {
  416. var att = this.selectedAttachments[i];
  417. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  418. if ((!att.data.control.allowControl) && att.data.person !== user) { //|| !att.data.control.allowEdit
  419. flag = false;
  420. break;
  421. }
  422. }
  423. if (flag) {
  424. this.setActionEnabled(this.configAction);
  425. } else {
  426. this.setActionDisabled(this.configAction);
  427. }
  428. //this.setActionEnabled(this.min_deleteAction);
  429. } else {
  430. this.setActionDisabled(this.configAction);
  431. //this.setActionDisabled(this.min_deleteAction);
  432. }
  433. if (this.checkTextAction) {
  434. this.setActionDisabled(this.checkTextAction);
  435. if (this.selectedAttachments.length && this.selectedAttachments.length === 1) {
  436. var att = this.selectedAttachments[0];
  437. if (this.options.images.indexOf(att.data.extension.toLowerCase()) !== -1) {
  438. this.setActionEnabled(this.checkTextAction);
  439. }
  440. }
  441. }
  442. },
  443. isAttConfigAvailable: function (att) {
  444. if (this.options.readonly) return false;
  445. if (this.options.toolbarGroupHidden.contains("config")) return false;
  446. var user = layout.session.user.distinguishedName;
  447. var flag = true;
  448. if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
  449. if (!att.data.control.allowControl && att.data.person !== user) {
  450. flag = false;
  451. }
  452. return flag;
  453. },
  454. createEditGroupActions: function () {
  455. if (!this.editActionBoxNode) this.editActionBoxNode = new Element("div", { "styles": this.css.actionsBoxNode }).inject(this.topNode);
  456. if (!this.editActionsGroupNode) this.editActionsGroupNode = new Element("div", { "styles": this.css.actionsGroupNode }).inject(this.editActionBoxNode);
  457. this.uploadAction = this.createAction(this.editActionsGroupNode, "upload", o2.LP.widget.upload, function (e, node) {
  458. this.uploadAttachment(e, node);
  459. }.bind(this));
  460. this.deleteAction = this.createAction(this.editActionsGroupNode, "delete", o2.LP.widget["delete"], function (e, node) {
  461. this.deleteAttachment(e, node);
  462. }.bind(this));
  463. if (!this.options.isReplaceHidden) {
  464. this.replaceAction = this.createAction(this.editActionsGroupNode, "replace", o2.LP.widget.replace, function (e, node) {
  465. this.replaceAttachment(e, node);
  466. }.bind(this));
  467. }
  468. // this.officeAction = this.createAction(this.editActionsGroupNode, "office", o2.LP.widget.office, function(e, node){
  469. // this.openInOfficeControl(e, node);
  470. // }.bind(this));
  471. if (!this.options.toolbarGroupHidden.contains("read")) this.editActionSeparateNode = this.createSeparate(this.editActionsGroupNode);
  472. },
  473. createConfigGroupActions: function () {
  474. this.configActionBoxNode = new Element("div", { "styles": this.css.actionsBoxNode }).inject(this.topNode);
  475. this.configActionsGroupNode = new Element("div", { "styles": this.css.actionsGroupNode }).inject(this.configActionBoxNode);
  476. this.configAction = this.createAction(this.configActionsGroupNode, "config", MWF.LP.widget.configAttachment, function (e, node) {
  477. this.configAttachment(e, node);
  478. }.bind(this));
  479. if (this.options.checkTextEnable) {
  480. this.checkTextAction = this.createAction(this.configActionsGroupNode, "check", MWF.LP.widget.checkOcrText, function (e, node) {
  481. this.checkImageTex(e, node);
  482. }.bind(this));
  483. }
  484. this.createSeparate(this.configActionsGroupNode);
  485. this.orderAction = this.createAction(this.configActionsGroupNode, "order", MWF.LP.widget.order, function (e, node) {
  486. this.orderAttachment(e, node);
  487. }.bind(this));
  488. if (this.configAction) this.setActionDisabled(this.configAction);
  489. if (this.checkTextAction) this.setActionDisabled(this.checkTextAction);
  490. },
  491. createOfficeGroupActions: function () {
  492. this.officeActionBoxNode = new Element("div", { "styles": this.css.actionsBoxNode }).inject(this.topNode);
  493. this.officeActionsGroupNode = new Element("div", { "styles": this.css.actionsGroupNode }).inject(this.officeActionBoxNode);
  494. this.closeOfficeAction = this.createAction(this.officeActionsGroupNode, "closeOffice", MWF.LP.widget.closeOffice, function (e, node) {
  495. this.closeAttachmentOffice(e, node);
  496. }.bind(this));
  497. if (this.closeOfficeAction) this.setActionDisabled(this.closeOfficeAction);
  498. },
  499. loadMinActions: function () {
  500. var hiddenGroup = this.options.toolbarGroupHidden;
  501. if (!hiddenGroup.contains("edit")) {
  502. this.min_uploadAction = this.createAction(this.minActionAreaNode, "upload", MWF.LP.widget.upload, function (e, node) {
  503. this.uploadAttachment(e, node);
  504. }.bind(this));
  505. this.min_deleteAction = this.createAction(this.minActionAreaNode, "delete", MWF.LP.widget["delete"], function (e, node) {
  506. this.deleteAttachment(e, node);
  507. }.bind(this));
  508. if (!this.options.isReplaceHidden) {
  509. this.min_replaceAction = this.createAction(this.minActionAreaNode, "replace", MWF.LP.widget.replace, function (e, node) {
  510. this.replaceAttachment(e, node);
  511. }.bind(this));
  512. }
  513. }
  514. if (!hiddenGroup.contains("read")) {
  515. this.min_downloadAction = this.createAction(this.minActionAreaNode, "download", MWF.LP.widget.download
  516. , function (e, node) {
  517. this.downloadAttachment(e, node);
  518. }.bind(this));
  519. }
  520. if (!hiddenGroup.contains("config")) {
  521. this.min_orderAction = this.createAction(this.minActionAreaNode, "order", MWF.LP.widget.order, function (e, node) {
  522. this.orderAttachment(e, node);
  523. }.bind(this));
  524. }
  525. if (this.module.json.isOpenInOffice && this.module.json.officeControlName) {
  526. this.min_closeOfficeAction = this.createAction(this.minActionAreaNode, "closeOffice", MWF.LP.widget.closeOffice, function (e, node) {
  527. this.closeAttachmentOffice(e, node);
  528. }.bind(this));
  529. if (this.min_closeOfficeAction) this.setActionDisabled(this.closeOfficeAction);
  530. }
  531. if (!hiddenGroup.contains("edit") || !hiddenGroup.contains("read")) {
  532. this.createSeparate(this.minActionAreaNode);
  533. }
  534. //this.createSeparate(this.configActionsGroupNode);
  535. if (this.options.isSizeChange) {
  536. //this.createSeparate(this.minActionAreaNode);
  537. if (!hiddenGroup.contains("view")) {
  538. this.sizeAction = this.createAction(this.minActionAreaNode, "max", MWF.LP.widget.min, function () {
  539. this.changeControllerSize();
  540. }.bind(this));
  541. }
  542. }
  543. },
  544. closeAttachmentOffice: function () {
  545. var office = this.module.form.all[this.module.json.officeControlName];
  546. if (office) {
  547. office.openFile();
  548. if (this.min_closeOfficeAction) this.setActionDisabled(this.min_closeOfficeAction);
  549. if (this.closeOfficeAction) this.setActionDisabled(this.closeOfficeAction);
  550. }
  551. },
  552. configAttachment: function () {
  553. //this.fireEvent("delete", [attachment.data]);
  554. var lp = MWF.xApplication.process.Xform.LP;
  555. var css = this.module.form.css;
  556. var node = new Element("div", { "styles": css.attachmentPermissionNode }).inject(this.node);
  557. var attNames = new Element("div", { "styles": css.attachmentPermissionNamesNode }).inject(node);
  558. var attNamesTitle = new Element("div", { "styles": css.attachmentPermissionNamesTitleNode, "text": lp.attachmentPermissionInfo }).inject(attNames);
  559. var attNamesArea = new Element("div", { "styles": css.attachmentPermissionNamesAreaNode }).inject(attNames);
  560. if (this.selectedAttachments.length) {
  561. this.selectedAttachments.each(function (att) {
  562. var attNode = new Element("div", { "styles": css.attachmentPermissionAttNode, "text": att.data.name }).inject(attNamesArea);
  563. }.bind(this));
  564. }
  565. var editArea = new Element("div", { "styles": css.attachmentPermissionEditAreaNode }).inject(node);
  566. var title = new Element("div", { "styles": css.attachmentPermissionTitleNode, "text": lp.attachmentRead }).inject(editArea);
  567. var readInput = new Element("div", { "styles": css.attachmentPermissionInputNode }).inject(editArea);
  568. title = new Element("div", { "styles": css.attachmentPermissionTitleNode, "text": lp.attachmentEdit }).inject(editArea);
  569. var editInput = new Element("div", { "styles": css.attachmentPermissionInputNode }).inject(editArea);
  570. title = new Element("div", { "styles": css.attachmentPermissionTitleNode, "text": lp.attachmentController }).inject(editArea);
  571. var controllerInput = new Element("div", { "styles": css.attachmentPermissionInputNode }).inject(editArea);
  572. var dlg = o2.DL.open(Object.merge({
  573. "title": lp.attachmentPermission,
  574. "style": this.module.form.json.dialogStyle || "user",
  575. "isResize": false,
  576. "content": node,
  577. "buttonList": [
  578. {
  579. "type": "ok",
  580. "text": MWF.LP.process.button.ok,
  581. "action": function () {
  582. this.setAttachmentConfig(readInput, editInput, controllerInput);
  583. dlg.close();
  584. }.bind(this)
  585. },
  586. {
  587. "type": "cancel",
  588. "text": MWF.LP.process.button.cancel,
  589. "action": function () { dlg.close(); }
  590. }
  591. ]
  592. }, (this.module.form.json.dialogOptions||{})));
  593. if (this.selectedAttachments.length === 1) {
  594. var data = this.selectedAttachments[0].data;
  595. var readUnitList = (data.readUnitList) || [];
  596. var readIdentityList = (data.readIdentityList) || [];
  597. var editUnitList = (data.editUnitList) || [];
  598. var editIdentityList = (data.editIdentityList) || [];
  599. var controllerUnitList = (data.controllerUnitList) || [];
  600. var controllerIdentityList = (data.controllerIdentityList) || [];
  601. readInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
  602. "types": ["unit", "identity"],
  603. "values": readUnitList.concat(readIdentityList).trim()
  604. }));
  605. editInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
  606. "types": ["unit", "identity"],
  607. "values": editUnitList.concat(editIdentityList).trim()
  608. }));
  609. controllerInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
  610. "types": ["unit", "identity"],
  611. "values": controllerUnitList.concat(controllerIdentityList).trim()
  612. }));
  613. } else {
  614. readInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
  615. "types": ["unit", "identity"]
  616. }));
  617. editInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
  618. "types": ["unit", "identity"]
  619. }));
  620. controllerInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
  621. "types": ["unit", "identity"]
  622. }));
  623. }
  624. },
  625. setAttachmentConfig: function (readInput, editInput, controllerInput) {
  626. if (this.selectedAttachments.length) {
  627. var readList = readInput.retrieve("data-value");
  628. var editList = editInput.retrieve("data-value");
  629. var controllerList = controllerInput.retrieve("data-value");
  630. var readUnitList = [];
  631. var readIdentityList = [];
  632. var editUnitList = [];
  633. var editIdentityList = [];
  634. var controllerUnitList = [];
  635. var controllerIdentityList = [];
  636. if (readList) {
  637. readList.each(function (v) {
  638. var vName = (typeOf(v) === "string") ? v : v.distinguishedName;
  639. var len = vName.length;
  640. var flag = vName.substring(len - 1, len);
  641. if (flag === "U") readUnitList.push(vName);
  642. if (flag === "I") readIdentityList.push(vName);
  643. });
  644. }
  645. if (editList) {
  646. editList.each(function (v) {
  647. var vName = (typeOf(v) === "string") ? v : v.distinguishedName;
  648. var len = vName.length;
  649. var flag = vName.substring(len - 1, len);
  650. if (flag === "U") editUnitList.push(vName);
  651. if (flag === "I") editIdentityList.push(vName);
  652. });
  653. }
  654. if (controllerList) {
  655. controllerList.each(function (v) {
  656. var vName = (typeOf(v) === "string") ? v : v.distinguishedName;
  657. var len = vName.length;
  658. var flag = vName.substring(len - 1, len);
  659. if (flag === "U") controllerUnitList.push(vName);
  660. if (flag === "I") controllerIdentityList.push(vName);
  661. });
  662. }
  663. var loadedCount = 0;
  664. this.selectedAttachments.each(function (att) {
  665. att.data.readUnitList = readUnitList;
  666. att.data.readIdentityList = readIdentityList;
  667. att.data.editUnitList = editUnitList;
  668. att.data.editIdentityList = editIdentityList;
  669. att.data.controllerUnitList = controllerUnitList;
  670. att.data.controllerIdentityList = controllerIdentityList;
  671. o2.Actions.get("x_processplatform_assemble_surface").configAttachment(att.data.id, this.module.form.businessData.work.id, att.data, function () {
  672. //刷新附件权限,以后要加一个刷新附件的功能
  673. o2.Actions.load("x_processplatform_assemble_surface").AttachmentAction.getWithWorkOrWorkCompleted(att.data.id, this.module.form.businessData.work.id, function (json) {
  674. var attachment = this.getAttachmentById( att.data.id );
  675. if( attachment ){
  676. attachment.data = json.data;
  677. if( attachment.deleteAction && !this.isAttDeleteAvailable(attachment) ){
  678. attachment.deleteAction.setStyle("display","none");
  679. }
  680. if( attachment.configAction && !this.isAttConfigAvailable(attachment) ){
  681. attachment.configAction.setStyle("display","none");
  682. }
  683. }
  684. loadedCount++;
  685. if( loadedCount === this.selectedAttachments.length ){
  686. this.checkActions();
  687. }
  688. }.bind(this))
  689. }.bind(this));
  690. }.bind(this));
  691. }
  692. },
  693. checkImageTex: function () {
  694. if (this.selectedAttachments.length && this.selectedAttachments.length == 1) {
  695. var att = this.selectedAttachments[0];
  696. var lp = MWF.xApplication.process.Xform.LP;
  697. var css = this.module.form.css;
  698. var node = new Element("div", { "styles": css.attachmentOCRNode }).inject(this.node);
  699. var previewNode = new Element("div", { "styles": css.attachmentOCRImageAreaNode }).inject(node);
  700. var imgNode = new Element("img", { "styles": css.attachmentOCRImageNode }).inject(previewNode);
  701. o2.Actions.get("x_processplatform_assemble_surface").getAttachmentUrl(att.data.id, this.module.form.businessData.work.id, function (url) {
  702. imgNode.set("src", o2.filterUrl(url));
  703. });
  704. var areaNode = new Element("div", { "styles": css.attachmentOCRInputAreaNode }).inject(node);
  705. var inputNode = new Element("textarea", { "styles": css.attachmentOCRInputNode }).inject(areaNode);
  706. var dlg = o2.DL.open({
  707. "title": lp.attachmentOCRTitle,
  708. "style": this.module.form.json.dialogStyle || "user",
  709. "isResize": false,
  710. "content": node,
  711. "buttonList": [
  712. {
  713. "type": "ok",
  714. "text": MWF.LP.process.button.ok,
  715. "action": function () {
  716. this.setAttachmentOCR(inputNode, att);
  717. dlg.close();
  718. }.bind(this)
  719. },
  720. {
  721. "type": "cancel",
  722. "text": MWF.LP.process.button.cancel,
  723. "action": function () { dlg.close(); }
  724. }
  725. ]
  726. });
  727. if (att.data.ocr) {
  728. inputNode.set("text", att.data.ocr.text || "");
  729. } else {
  730. o2.Actions.get("x_processplatform_assemble_surface").getAttachmentOCR(att.data.id, this.module.form.businessData.work.id, function (json) {
  731. att.data.ocr = json.data;
  732. inputNode.set("text", json.data.text || "");
  733. }.bind(this))
  734. }
  735. }
  736. },
  737. setAttachmentOCR: function (inputNode, att) {
  738. var data = inputNode.get("text");
  739. if (!att.data.ocr) att.data.ocr = {};
  740. att.data.ocr.text = data;
  741. o2.Actions.get("x_processplatform_assemble_surface").setAttachmentOCR(att.data.id, this.module.form.businessData.work.id, {
  742. "text": data
  743. }, function () {
  744. this.module.form.app.notice("success", lp.attachmentOCR_saved, this.node);
  745. }.bind(this));
  746. },
  747. checkMoveAction: function (item) {
  748. if (item) {
  749. var actionArea = item.getFirst().getNext();
  750. var actionup = actionArea.getFirst().show();
  751. var actiondown = actionArea.getLast().show();
  752. tmp = item.getPrevious();
  753. if (!tmp) actionup.hide();
  754. tmp = item.getNext();
  755. if (!tmp) actiondown.hide();
  756. }
  757. },
  758. orderAttachment: function () {
  759. if (this.attachments.length) {
  760. this.attachments = this.attachments.sort(function (a1, a2) {
  761. if (!a2.data.orderNumber) return 1;
  762. if (!a1.data.orderNumber) return -1;
  763. return a1.data.orderNumber - a2.data.orderNumber;
  764. }.bind(this));
  765. var lp = MWF.xApplication.process.Xform.LP;
  766. var css = this.module.form.css;
  767. var node = new Element("div", { "styles": css.attachmentOrderNode });
  768. var infoNode = new Element("div", { "styles": css.attachmentOrderInforNode, "text": lp.attachmentOrderInfo }).inject(node);
  769. var attrchmentsNode = new Element("div", { "styles": css.attachmentOrderAreaNode }).inject(node);
  770. var iconUrl = "../x_component_File/$Main/icon.json";
  771. var icons = null;
  772. o2.getJSON(iconUrl, function (json) {
  773. icons = json;
  774. }.bind(this), false, false);
  775. this.attachments.each(function (att, idx) {
  776. var iconName = icons[att.data.extension.toLowerCase()] || icons.unknow;
  777. var iconFolderUrl = "../x_component_File/$Main/default/file/" + iconName;
  778. var itemNode = new Element("div", { "styles": css.attachmentOrderItemNode }).inject(attrchmentsNode);
  779. itemNode.store("att", att);
  780. var icon = new Element("div", { "styles": css.attachmentOrderItemIconNode }).inject(itemNode);
  781. icon.setStyle("background-image", "url('" + iconFolderUrl + "')");
  782. var actionArea = new Element("div", { "styles": css.attachmentOrderItemActionNode }).inject(itemNode);
  783. var text = new Element("div", { "styles": css.attachmentOrderItemTextNode, "text": att.data.name }).inject(itemNode);
  784. var actionUp = new Element("div", { "styles": css.attachmentOrderItemActionUpNode, "text": lp.attachmentOrderUp }).inject(actionArea);
  785. var actionDown = new Element("div", { "styles": css.attachmentOrderItemActionDownNode, "text": lp.attachmentOrderDown }).inject(actionArea);
  786. if (idx == 0) actionUp.hide();
  787. if (idx == this.attachments.length - 1) actionDown.hide();
  788. actionUp.addEvent("click", function (e) {
  789. var itemNode = e.target.getParent().getParent();
  790. var upNode = itemNode.getPrevious();
  791. if (upNode) {
  792. itemNode.inject(upNode, "before");
  793. this.checkMoveAction(upNode);
  794. }
  795. this.checkMoveAction(itemNode);
  796. itemNode.highlight();
  797. //itemNode.setStyle("background-color", "#faf9f1");
  798. }.bind(this));
  799. actionDown.addEvent("click", function (e) {
  800. var itemNode = e.target.getParent().getParent();
  801. var downNode = itemNode.getNext();
  802. if (downNode) {
  803. itemNode.inject(downNode, "after");
  804. this.checkMoveAction(downNode);
  805. }
  806. this.checkMoveAction(itemNode);
  807. itemNode.highlight();
  808. // /itemNode.setStyle("background-color", "#faf9f1");
  809. }.bind(this));
  810. itemNode.addEvents({
  811. "mouseover": function (e) { this.setStyle("background-color", "#f1f6fa"); },
  812. "mouseout": function (e) { this.setStyle("background-color", "#ffffff"); }
  813. });
  814. //var droppables = attrchmentsNode.getChildren();
  815. new Drag(itemNode, {
  816. "handle": icon,
  817. "snap": 5,
  818. "stopPropagation": true,
  819. "preventDefault": true,
  820. onStart: function (el, e) {
  821. var itemNode = el;
  822. itemNode.setStyle("background-color", "#f1f6fa");
  823. var moveNode = itemNode.clone(true).setStyles(css.attachmentOrderItemNode).setStyles({
  824. "background-color": "#faf9f1",
  825. "opacity": 0.8,
  826. "border": "1px dotted #333333"
  827. }).inject(node);
  828. moveNode.position({
  829. "relativeTo": itemNode,
  830. "position": 'upperLeft',
  831. "edge": 'upperLeft'
  832. });
  833. moveNode.owner = itemNode;
  834. var move = new Drag.Move(moveNode, {
  835. "container": node,
  836. "droppables": attrchmentsNode.getChildren(),
  837. "onEnter": function (el, drop) {
  838. moveNode.flagNode = new Element("div", { "styles": css.attachmentOrderFlagNode }).inject(drop, "before");
  839. },
  840. "onLeave": function (el, drop) {
  841. if (moveNode.flagNode) moveNode.flagNode.destroy();
  842. },
  843. "onDrop": function (el, drop) {
  844. if (moveNode.flagNode) {
  845. moveNode.owner.inject(moveNode.flagNode, "after");
  846. moveNode.flagNode.destroy();
  847. moveNode.owner.highlight();
  848. this.checkMoveAction(moveNode.owner);
  849. this.checkMoveAction(drop);
  850. this.checkMoveAction(attrchmentsNode.getLast());
  851. moveNode.destroy()
  852. }
  853. }.bind(this)
  854. });
  855. move.start(e);
  856. }.bind(this),
  857. enter: function (el) {
  858. el.removeClass('dragging');
  859. }
  860. });
  861. //itemNode.dragMove
  862. }.bind(this));
  863. var dlg = o2.DL.open(Object.merge({
  864. "title": lp.attachmentOrderTitle,
  865. "style": this.module.form.json.dialogStyle || "user",
  866. "isResize": false,
  867. "content": node,
  868. "width": "auto",
  869. "height": "auto",
  870. "buttonList": [
  871. {
  872. "type": "ok",
  873. "text": MWF.LP.process.button.ok,
  874. "action": function () {
  875. this.sortAttachment(attrchmentsNode);
  876. dlg.close();
  877. }.bind(this)
  878. },
  879. {
  880. "type": "cancel",
  881. "text": MWF.LP.process.button.cancel,
  882. "action": function () { dlg.close(); }
  883. }
  884. ],
  885. "onPostLoad": function () {
  886. var dlg = this;
  887. dlg.node.setStyle("display", "block");
  888. var size = {};
  889. if (css.attachmentOrderNode) {
  890. if (parseFloat(css.attachmentOrderNode.width).toString() !== "NaN") {
  891. size.x = parseInt(css.attachmentOrderNode.width)
  892. }
  893. if (parseFloat(css.attachmentOrderNode.height).toString() !== "NaN") {
  894. size.y = parseInt(css.attachmentOrderNode.height)
  895. }
  896. }
  897. node.show();
  898. var nodeSize = node.getSize();
  899. dlg.content.setStyles({
  900. "width": size.x || nodeSize.x,
  901. "height": size.y || nodeSize.y
  902. });
  903. dlg.setContentSize();
  904. }
  905. }, (this.module.form.json.dialogOptions||{})));
  906. }
  907. },
  908. sortAttachment: function (node) {
  909. var nodes = node.getChildren();
  910. nodes.each(function (item, idx) {
  911. var att = item.retrieve("att", null);
  912. if (att) {
  913. att.data.orderNumber = idx;
  914. o2.Actions.load("x_processplatform_assemble_surface").AttachmentAction.changeOrderNumber(att.data.id, this.module.form.businessData.work.id, idx);
  915. }
  916. }.bind(this));
  917. this.attachments = this.attachments.sort(function (a1, a2) {
  918. if (!a2.data.orderNumber) return 1;
  919. if (!a1.data.orderNumber) return -1;
  920. return a1.data.orderNumber - a2.data.orderNumber;
  921. }.bind(this));
  922. this.reloadAttachments();
  923. this.fireEvent("order");
  924. }
  925. });
  926. /**
  927. * 当前登录人员的附件权限数据结构.
  928. * @typedef {Object} AttachmentControl
  929. * @property {Boolean} allowRead - 是否允许阅读.
  930. * @property {Boolean} allowEdit - 是否允许编辑.
  931. * @property {Boolean} allowControl - 是否允许设置.
  932. */
  933. /**
  934. * 附件数据结构.
  935. * @typedef {Object} AttachmentData
  936. * @property {String} id - 附件id.
  937. * @property {String} name - 附件标题.
  938. * @property {String} person - 上传人.
  939. * @property {Number} orderNumber - 排序号.
  940. * @property {String} activityName - 上传的节点.
  941. * @property {AttachmentControl} control - 当前登录人员对附件拥有的权限.
  942. * @property {Number} length - 附件大小.
  943. * @property {String} createTime - 创建时间.
  944. * @property {String} updateTime - 修改时间.
  945. * @property {String} extension - 附件扩展名.
  946. */
  947. /** @class process.Actionbar 附件组件。
  948. * @example
  949. * //可以在脚本中获取该组件
  950. * //方法1:
  951. * var attachment = this.form.get("name"); //获取组件
  952. * //方法2
  953. * var attachment = this.target; //在组件事件脚本中获取
  954. * @extends MWF.xApplication.process.Xform.$Module
  955. * @hideconstructor
  956. */
  957. MWF.xApplication.process.Xform.Attachment = MWF.APPAttachment = new Class(
  958. /** @lends MWF.xApplication.process.Xform.Attachment# */
  959. {
  960. Extends: MWF.APP$Module,
  961. options: {
  962. "moduleEvents": ["upload", "delete", "afterDelete", "load", "change","download","open"]
  963. },
  964. initialize: function (node, json, form, options) {
  965. this.node = $(node);
  966. this.node.store("module", this);
  967. this.json = json;
  968. this.form = form;
  969. this.field = true;
  970. },
  971. _loadUserInterface: function () {
  972. this.node.empty();
  973. if (this.form.businessData.work.startTime){
  974. this.loadAttachmentController();
  975. this.fireEvent("load");
  976. }
  977. },
  978. reload: function(){
  979. this.node.empty();
  980. if (this.form.businessData.work.startTime){
  981. this.loadAttachmentController();
  982. }
  983. },
  984. loadAttachmentController: function () {
  985. //MWF.require("MWF.widget.AttachmentController", function() {
  986. var options = {
  987. "style": this.json.style || "default",
  988. "title": "附件区域",
  989. "listStyle": this.json.listStyle || "icon",
  990. "size": this.json.size || "max",
  991. "resize": (this.json.resize === "y" || this.json.resize === "true"),
  992. "attachmentCount": this.json.attachmentCount || 0,
  993. "isUpload": (this.json.isUpload === "y" || this.json.isUpload === "true"),
  994. "isDelete": (this.json.isDelete === "y" || this.json.isDelete === "true"),
  995. "isReplace": (this.json.isReplace === "y" || this.json.isReplace === "true"),
  996. "isDownload": (this.json.isDownload === "y" || this.json.isDownload === "true"),
  997. "isSizeChange": (this.json.isSizeChange === "y" || this.json.isSizeChange === "true"),
  998. "readonly": (this.json.readonly === "y" || this.json.readonly === "true"),
  999. "availableListStyles": this.json.availableListStyles ? this.json.availableListStyles : ["list", "seq", "icon", "preview"],
  1000. "isDeleteOption": this.json.isDelete,
  1001. "isReplaceOption": this.json.isReplace,
  1002. "toolbarGroupHidden": this.json.toolbarGroupHidden || [],
  1003. "onOrder": function () {
  1004. this.fireEvent("change");
  1005. }.bind(this)
  1006. };
  1007. if (this.readonly) options.readonly = true;
  1008. if (this.form.json.attachmentStyle) {
  1009. options = Object.merge(options, this.form.json.attachmentStyle);
  1010. }
  1011. //this.attachmentController = new MWF.widget.ATTER(this.node, this, options);
  1012. /**
  1013. * 附件容器.
  1014. * @member {MWF.xApplication.process.Xform.AttachmentController}
  1015. * @example
  1016. * var attachmentController = this.form.get("fieldName").AttachmentController; //获取附件容器
  1017. * var attachmentList = attachmentController.attachments; //获取所有的附件
  1018. * var attachmentData = attachment[0].data; //获取第一个附件的数据
  1019. */
  1020. this.attachmentController = new MWF.xApplication.process.Xform.AttachmentController(this.node, this, options);
  1021. this.attachmentController.load();
  1022. this.form.businessData.attachmentList.each(function (att) {
  1023. //if (att.site===this.json.id || (this.json.isOpenInOffice && this.json.officeControlName===att.site)) this.attachmentController.addAttachment(att);
  1024. if (att.site === (this.json.site || this.json.id)) this.attachmentController.addAttachment(att);
  1025. }.bind(this));
  1026. this.setAttachmentBusinessData();
  1027. //}.bind(this));
  1028. },
  1029. setAttachmentBusinessData: function () {
  1030. if (this.attachmentController) {
  1031. if (this.attachmentController.attachments.length) {
  1032. var values = this.attachmentController.attachments.map(function (d) {
  1033. return d.data.name;
  1034. });
  1035. this._setBusinessData(values);
  1036. } else {
  1037. this._setBusinessData([]);
  1038. }
  1039. }
  1040. },
  1041. _loadEvents: function (editorConfig) {
  1042. Object.each(this.json.events, function (e, key) {
  1043. if (e.code) {
  1044. if (this.options.moduleEvents.indexOf(key) !== -1) {
  1045. this.addEvent(key, function (event) {
  1046. return this.form.Macro.fire(e.code, this, event);
  1047. }.bind(this));
  1048. } else {
  1049. this.node.addEvent(key, function (event) {
  1050. return this.form.Macro.fire(e.code, this, event);
  1051. }.bind(this));
  1052. }
  1053. }
  1054. }.bind(this));
  1055. },
  1056. isEmpty : function(){
  1057. var data = this.getData();
  1058. if( typeOf(data) === "array" ){
  1059. return data.length == 0
  1060. }else{
  1061. return !data;
  1062. }
  1063. },
  1064. /**
  1065. * 获取当前组件所有附件的标题.如果没有附件返回null
  1066. * @example
  1067. * var getAttachmentNames = this.form.get("name").getData();
  1068. * @return {StringArray|Null} 附件标题.
  1069. */
  1070. getData: function () {
  1071. return (this.attachmentController) ? this.attachmentController.getAttachmentNames() : null;
  1072. },
  1073. createUploadFileNode: function () {
  1074. var accept = "*";
  1075. if (!this.json.attachmentExtType || (this.json.attachmentExtType.indexOf("other") != -1 && !this.json.attachmentExtOtherType)) {
  1076. } else {
  1077. accepts = [];
  1078. var otherType = this.json.attachmentExtOtherType;
  1079. this.json.attachmentExtType.each(function (v) {
  1080. switch (v) {
  1081. case "word":
  1082. accepts.push(".doc, .docx, .dot, .dotx");
  1083. break;
  1084. case "excel":
  1085. accepts.push(".xls, .xlsx, .xlsm, .xlt, .xltx");
  1086. break;
  1087. case "ppt":
  1088. accepts.push(".pptx, .ppt, .pot, .potx, .potm");
  1089. break;
  1090. case "txt":
  1091. accepts.push(".txt");
  1092. break;
  1093. case "pic":
  1094. accepts.push(".bmp, .gif, .psd, .jpeg, .jpg, .png");
  1095. break;
  1096. case "pdf":
  1097. accepts.push(".pdf");
  1098. break;
  1099. case "zip":
  1100. accepts.push(".zip, .rar");
  1101. break;
  1102. case "audio":
  1103. accepts.push(".mp3, .wav, .wma, .wmv, .flac, .ape");
  1104. break;
  1105. case "video":
  1106. accepts.push(".avi, .mkv, .mov, .ogg, .mp4, .mpeg");
  1107. break;
  1108. case "other":
  1109. if (this.json.attachmentExtOtherType) accepts.push(this.json.attachmentExtOtherType);
  1110. break;
  1111. }
  1112. }.bind(this));
  1113. accept = accepts.join(", ");
  1114. }
  1115. var size = 0;
  1116. if (this.json.attachmentSize) size = this.json.attachmentSize.toFloat();
  1117. this.attachmentController.doUploadAttachment({ "site": (this.json.site || this.json.id) }, this.form.workAction.action, "uploadAttachment", { "id": this.form.businessData.work.id }, null, function (o) {
  1118. if (o.id) {
  1119. this.form.workAction.getAttachment(o.id, this.form.businessData.work.id, function (json) {
  1120. if (json.data) {
  1121. if (!json.data.control) json.data.control = {};
  1122. this.attachmentController.addAttachment(json.data, o.messageId);
  1123. }
  1124. this.attachmentController.checkActions();
  1125. this.setAttachmentBusinessData();
  1126. this.fireEvent("upload", [json.data]);
  1127. this.fireEvent("change");
  1128. }.bind(this))
  1129. }
  1130. this.attachmentController.checkActions();
  1131. }.bind(this), function (files) {
  1132. if (files.length) {
  1133. if ((files.length + this.attachmentController.attachments.length > this.attachmentController.options.attachmentCount) && this.attachmentController.options.attachmentCount > 0) {
  1134. var content = MWF.xApplication.process.Xform.LP.uploadMore;
  1135. content = content.replace("{n}", this.attachmentController.options.attachmentCount);
  1136. this.form.notice(content, "error");
  1137. return false;
  1138. }
  1139. }
  1140. return true;
  1141. }.bind(this), true, accept, size, function (o) { //错误的回调
  1142. if (o.messageId && this.attachmentController.messageItemList) {
  1143. var message = this.attachmentController.messageItemList[o.messageId];
  1144. if( message && message.node )message.node.destroy();
  1145. }
  1146. }.bind(this));
  1147. // this.uploadFileAreaNode = new Element("div");
  1148. // var html = "<input name=\"file\" type=\"file\" multiple/>";
  1149. // this.uploadFileAreaNode.set("html", html);
  1150. //
  1151. // this.fileUploadNode = this.uploadFileAreaNode.getFirst();
  1152. // this.fileUploadNode.addEvent("change", function(){
  1153. //
  1154. // var files = this.fileUploadNode.files;
  1155. // if (files.length){
  1156. // if ((files.length+this.attachmentController.attachments.length > this.attachmentController.options.attachmentCount) && this.attachmentController.options.attachmentCount>0){
  1157. // var content = MWF.xApplication.process.Xform.LP.uploadMore;
  1158. // content = content.replace("{n}", this.attachmentController.options.attachmentCount);
  1159. // this.form.notice(content, "error");
  1160. // }else{
  1161. // for (var i = 0; i < files.length; i++) {
  1162. // var file = files.item(i);
  1163. //
  1164. // var formData = new FormData();
  1165. // formData.append('site', this.json.id);
  1166. // formData.append('file', file);
  1167. //
  1168. // //formData.append('folder', folderId);
  1169. //
  1170. // this.form.workAction.uploadAttachment(this.form.businessData.work.id ,function(o, text){
  1171. // if (o.id){
  1172. // this.form.workAction.getAttachment(o.id, this.form.businessData.work.id, function(json){
  1173. // if (json.data) this.attachmentController.addAttachment(json.data);
  1174. // this.attachmentController.checkActions();
  1175. //
  1176. // this.fireEvent("upload", [json.data]);
  1177. // }.bind(this))
  1178. // }
  1179. // this.attachmentController.checkActions();
  1180. // }.bind(this), null, formData, file);
  1181. // }
  1182. // }
  1183. // }
  1184. // }.bind(this));
  1185. },
  1186. uploadAttachment: function (e, node) {
  1187. if (window.o2android && window.o2android.uploadAttachment) {
  1188. window.o2android.uploadAttachment((this.json.site || this.json.id));
  1189. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.uploadAttachment) {
  1190. window.webkit.messageHandlers.uploadAttachment.postMessage({ "site": (this.json.site || this.json.id) });
  1191. } else {
  1192. // if (!this.uploadFileAreaNode){
  1193. this.createUploadFileNode();
  1194. // }
  1195. // this.fileUploadNode.click();
  1196. }
  1197. },
  1198. deleteAttachments: function (e, node, attachments) {
  1199. var names = [];
  1200. attachments.each(function (attachment) {
  1201. names.push(attachment.data.name);
  1202. }.bind(this));
  1203. // if ((window.o2 && window.o2.replaceAttachment) || (window.webkit && window.webkit.messageHandlers)){
  1204. // if (window.confirm(MWF.xApplication.process.Xform.LP.deleteAttachment+"( "+names.join(", ")+" )")){
  1205. // while (attachments.length){
  1206. // attachment = attachments.shift();
  1207. // this.deleteAttachment(attachment);
  1208. // }
  1209. // }
  1210. // }else {
  1211. // var tmpNode = new Element("div", {
  1212. // "styles": {
  1213. // "background-color": "#0000ff",
  1214. // "border-style": "solid",
  1215. // "border-color": "#fff",
  1216. // "border-width": "1",
  1217. // "box-shadow": "0px 0px 20px #999",
  1218. // "z-index": "20000",
  1219. // "overflow": "hidden",
  1220. // "font-size": "14px",
  1221. // "height": "160px",
  1222. // "padding": "0px",
  1223. // "width": "300px",
  1224. // "position": "absolute",
  1225. // "top": "50px",
  1226. // "left": "20px",
  1227. // "opacity": 1,
  1228. // "border-radius": "5px"
  1229. // }
  1230. // }).inject(this.form.app.content);
  1231. var _self = this;
  1232. this.form.confirm("warn", e, MWF.xApplication.process.Xform.LP.deleteAttachmentTitle, MWF.xApplication.process.Xform.LP.deleteAttachment + "( " + names.join(", ") + " )", 300, 120, function () {
  1233. while (attachments.length) {
  1234. var attachment = attachments.shift();
  1235. _self.deleteAttachment(attachment);
  1236. }
  1237. this.close();
  1238. }, function () {
  1239. this.close();
  1240. }, null, null, this.form.json.confirmStyle);
  1241. },
  1242. deleteAttachment: function (attachment) {
  1243. this.fireEvent("delete", [attachment.data]);
  1244. var id = attachment.data.id;
  1245. this.form.workAction.deleteAttachment(attachment.data.id, this.form.businessData.work.id, function (josn) {
  1246. this.attachmentController.removeAttachment(attachment);
  1247. this.attachmentController.checkActions();
  1248. if (this.form.officeList) {
  1249. this.form.officeList.each(function (office) {
  1250. if (office.openedAttachment) {
  1251. if (office.openedAttachment.id == id) {
  1252. office.loadOfficeEdit();
  1253. }
  1254. }
  1255. }.bind(this));
  1256. }
  1257. this.setAttachmentBusinessData();
  1258. this.fireEvent("afterDelete", [attachment.data]);
  1259. this.fireEvent("change");
  1260. }.bind(this));
  1261. },
  1262. replaceAttachment: function (e, node, attachment) {
  1263. if (window.o2android && window.o2android.replaceAttachment) {
  1264. window.o2android.replaceAttachment(attachment.data.id, (this.json.site || this.json.id));
  1265. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.replaceAttachment) {
  1266. window.webkit.messageHandlers.replaceAttachment.postMessage({ "id": attachment.data.id, "site": (this.json.site || this.json.id) });
  1267. } else {
  1268. var _self = this;
  1269. this.form.confirm("warn", e, MWF.xApplication.process.Xform.LP.replaceAttachmentTitle, MWF.xApplication.process.Xform.LP.replaceAttachment + "( " + attachment.data.name + " )", 350, 120, function () {
  1270. _self.replaceAttachmentFile(attachment);
  1271. this.close();
  1272. }, function () {
  1273. this.close();
  1274. }, null, null, this.form.json.confirmStyle);
  1275. }
  1276. },
  1277. createReplaceFileNode: function (attachment) {
  1278. var accept = "*";
  1279. if (!this.json.attachmentExtType || this.json.attachmentExtType.indexOf("other") != -1 && !this.json.attachmentExtOtherType) {
  1280. } else {
  1281. accepts = [];
  1282. var otherType = this.json.attachmentExtOtherType;
  1283. this.json.attachmentExtType.each(function (v) {
  1284. switch (v) {
  1285. case "word":
  1286. accepts.push(".doc, .docx, .dot, .dotx");
  1287. break;
  1288. case "excel":
  1289. accepts.push(".xls, .xlsx, .xlsm, .xlt, .xltx");
  1290. break;
  1291. case "ppt":
  1292. accepts.push(".pptx, .ppt, .pot, .potx, .potm");
  1293. break;
  1294. case "txt":
  1295. accepts.push(".txt");
  1296. break;
  1297. case "pic":
  1298. accepts.push(".bmp, .gif, .psd, .jpeg, .jpg");
  1299. break;
  1300. case "pdf":
  1301. accepts.push(".pdf");
  1302. break;
  1303. case "zip":
  1304. accepts.push(".zip, .rar");
  1305. break;
  1306. case "audio":
  1307. accepts.push(".mp3, .wav, .wma, .wmv, .flac, .ape");
  1308. break;
  1309. case "video":
  1310. accepts.push(".avi, .mkv, .mov, .ogg, .mp4, .mpeg");
  1311. break;
  1312. case "other":
  1313. if (this.json.attachmentExtOtherType) accepts.push(this.json.attachmentExtOtherType);
  1314. break;
  1315. }
  1316. });
  1317. accept = accepts.join(", ");
  1318. }
  1319. var size = 0;
  1320. if (this.json.attachmentSize) size = this.json.attachmentSize.toFloat();
  1321. this.attachmentController.doUploadAttachment({ "site": (this.json.site || this.json.id) }, this.form.workAction.action, "replaceAttachment",
  1322. { "id": attachment.data.id, "workid": this.form.businessData.work.id }, null, function (o) {
  1323. this.form.workAction.getAttachment(attachment.data.id, this.form.businessData.work.id, function (json) {
  1324. attachment.data = json.data;
  1325. attachment.reload();
  1326. if (o.messageId && this.attachmentController.messageItemList) {
  1327. var message = this.attachmentController.messageItemList[o.messageId];
  1328. if( message && message.node )message.node.destroy();
  1329. }
  1330. this.attachmentController.checkActions();
  1331. }.bind(this))
  1332. }.bind(this), null, true, accept, size, function (o) { //错误的回调
  1333. if (o.messageId && this.attachmentController.messageItemList) {
  1334. var message = this.attachmentController.messageItemList[o.messageId];
  1335. if( message && message.node )message.node.destroy();
  1336. }
  1337. }.bind(this));
  1338. // this.replaceFileAreaNode = new Element("div");
  1339. // var html = "<input name=\"file\" type=\"file\" multiple/>";
  1340. // this.replaceFileAreaNode.set("html", html);
  1341. //
  1342. // this.fileReplaceNode = this.replaceFileAreaNode.getFirst();
  1343. // this.fileReplaceNode.addEvent("change", function(){
  1344. //
  1345. // var files = this.fileReplaceNode.files;
  1346. // if (files.length){
  1347. // for (var i = 0; i < files.length; i++) {
  1348. // var file = files.item(i);
  1349. //
  1350. // var formData = new FormData();
  1351. // formData.append('file', file);
  1352. // // formData.append('site', this.json.id);
  1353. //
  1354. // this.form.workAction.replaceAttachment(attachment.data.id, this.form.businessData.work.id ,function(o, text){
  1355. // this.form.workAction.getAttachment(attachment.data.id, this.form.businessData.work.id, function(json){
  1356. // attachment.data = json.data;
  1357. // attachment.reload();
  1358. // this.attachmentController.checkActions();
  1359. // }.bind(this))
  1360. // }.bind(this), null, formData, file);
  1361. // }
  1362. // }
  1363. // }.bind(this));
  1364. },
  1365. replaceAttachmentFile: function (attachment) {
  1366. //if (!this.replaceFileAreaNode){
  1367. this.createReplaceFileNode(attachment);
  1368. // }
  1369. // this.fileReplaceNode.click();
  1370. },
  1371. queryDownload : function( att ){
  1372. if( this.json.events && this.json.events.queryDownload && this.json.events.queryDownload.code ){
  1373. var flag = this.form.Macro.exec(this.json.events.queryDownload.code, att );
  1374. if( flag === false ){
  1375. return false
  1376. }else{
  1377. return true;
  1378. }
  1379. }else{
  1380. return true;
  1381. }
  1382. },
  1383. queryOpen : function( att ){
  1384. if( this.json.events && this.json.events.queryOpen && this.json.events.queryOpen.code ){
  1385. var flag = this.form.Macro.exec(this.json.events.queryOpen.code, att );
  1386. if( flag === false ){
  1387. return false
  1388. }else{
  1389. return true;
  1390. }
  1391. }else{
  1392. return true;
  1393. }
  1394. },
  1395. //小程序文件是否支持打开
  1396. checkMiniProgramFile: function(ext) {
  1397. var exts = ["doc", "docx", "xls", "xlsx", "ppt", "pptx", "pdf"];
  1398. for(var i = 0; i < exts.length; i++){
  1399. if(ext === exts[i]){
  1400. return true;
  1401. }
  1402. }
  1403. return false;
  1404. },
  1405. downloadAttachment: function (e, node, attachments) {
  1406. if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
  1407. attachments.each(function (att) {
  1408. if( !this.queryDownload( att ) )return;
  1409. if (window.o2android && window.o2android.downloadAttachment) {
  1410. window.o2android.downloadAttachment(att.data.id);
  1411. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1412. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1413. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1414. wx.miniProgram.navigateTo({
  1415. url: '../file/download?attId=' + att.data.id + '&type=work&work=' + this.form.businessData.work.id
  1416. });
  1417. } else {
  1418. if (layout.mobile) {
  1419. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1420. this.form.workAction.getAttachmentUrl(att.data.id, this.form.businessData.work.id, function (url) {
  1421. var xtoken = Cookie.read("x-token");
  1422. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1423. });
  1424. } else {
  1425. this.form.workAction.getAttachmentStream(att.data.id, this.form.businessData.work.id);
  1426. }
  1427. }
  1428. this.fireEvent("download",[att])
  1429. }.bind(this));
  1430. } else {
  1431. attachments.each(function (att) {
  1432. if( !this.queryDownload( att ) )return;
  1433. if (window.o2android && window.o2android.downloadAttachment) {
  1434. window.o2android.downloadAttachment(att.data.id);
  1435. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1436. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1437. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1438. wx.miniProgram.navigateTo({
  1439. url: '../file/download?attId=' + att.data.id + '&type=work&workCompleted=' + this.form.businessData.workCompleted.id
  1440. });
  1441. } else {
  1442. if (layout.mobile) {
  1443. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1444. this.form.workAction.getAttachmentWorkcompletedUrl(att.data.id, this.form.businessData.workCompleted.id, function (url) {
  1445. var xtoken = Cookie.read("x-token");
  1446. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1447. });
  1448. } else {
  1449. this.form.workAction.getWorkcompletedAttachmentStream(att.data.id, this.form.businessData.workCompleted.id);
  1450. }
  1451. }
  1452. this.fireEvent("download",[att])
  1453. }.bind(this));
  1454. }
  1455. },
  1456. openAttachment: function (e, node, attachments) {
  1457. if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
  1458. attachments.each(function (att) {
  1459. if( !this.queryOpen( att ) )return;
  1460. if (window.o2android && window.o2android.downloadAttachment) {
  1461. window.o2android.downloadAttachment(att.data.id);
  1462. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1463. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1464. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1465. wx.miniProgram.navigateTo({
  1466. url: '../file/download?attId=' + att.data.id + '&type=work&work=' + this.form.businessData.work.id
  1467. });
  1468. } else {
  1469. if (layout.mobile) {
  1470. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1471. this.form.workAction.getAttachmentUrl(att.data.id, this.form.businessData.work.id, function (url) {
  1472. var xtoken = Cookie.read("x-token");
  1473. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1474. });
  1475. } else {
  1476. this.form.workAction.getAttachmentData(att.data.id, this.form.businessData.work.id);
  1477. }
  1478. }
  1479. this.fireEvent("open",[att])
  1480. }.bind(this));
  1481. } else {
  1482. attachments.each(function (att) {
  1483. if( !this.queryOpen( att ) )return;
  1484. if (window.o2android && window.o2android.downloadAttachment) {
  1485. window.o2android.downloadAttachment(att.data.id);
  1486. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1487. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1488. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1489. wx.miniProgram.navigateTo({
  1490. url: '../file/download?attId=' + att.data.id + '&type=work&workCompleted=' + this.form.businessData.workCompleted.id
  1491. });
  1492. } else {
  1493. if (layout.mobile) {
  1494. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1495. this.form.workAction.getAttachmentWorkcompletedUrl(att.data.id, ((this.form.businessData.workCompleted) ? this.form.businessData.workCompleted.id : this.form.businessData.work.id), function (url) {
  1496. var xtoken = Cookie.read("x-token");
  1497. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1498. });
  1499. } else {
  1500. this.form.workAction.getWorkcompletedAttachmentData(att.data.id, ((this.form.businessData.workCompleted) ? this.form.businessData.workCompleted.id : this.form.businessData.work.id));
  1501. }
  1502. }
  1503. this.fireEvent("open",[att])
  1504. }.bind(this));
  1505. }
  1506. //this.downloadAttachment(e, node, attachment);
  1507. },
  1508. getAttachmentUrl: function (attachment, callback) {
  1509. if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
  1510. this.form.workAction.getAttachmentUrl(attachment.data.id, this.form.businessData.work.id, callback);
  1511. } else {
  1512. this.form.workAction.getAttachmentWorkcompletedUrl(attachment.data.id, this.form.businessData.workCompleted.id, callback);
  1513. }
  1514. },
  1515. getTextData: function(){
  1516. var data = [];
  1517. this.attachmentController.attachments.each(function(att){
  1518. var o = {
  1519. "id": att.data.id,
  1520. "person": att.data.person,
  1521. "creatorUid": att.data.creatorUid,
  1522. "name": att.data.name,
  1523. "orderNumber": att.data.orderNumber,
  1524. "length": att.data.length,
  1525. "extension": att.data.extension,
  1526. "lastUpdateTime": att.data.lastUpdateTime,
  1527. "activityName": att.data.activityName
  1528. }
  1529. data.push(o);
  1530. });
  1531. return data;
  1532. },
  1533. /**
  1534. * 为组件重新设置附件,该附件必须已经上传。
  1535. * @param data{AttachmentData} .
  1536. */
  1537. setData: function(data){
  1538. this.attachmentController.clear();
  1539. data.each(function (att) {
  1540. var attachment = this.form.businessData.attachmentList.find(function(a){
  1541. return a.id==att.id;
  1542. });
  1543. var attData = attachment || att;
  1544. this.attachmentController.addAttachment(attData);
  1545. }.bind(this));
  1546. this.setAttachmentBusinessData();
  1547. },
  1548. createErrorNode: function (text) {
  1549. var node = new Element("div");
  1550. var iconNode = new Element("div", {
  1551. "styles": {
  1552. "width": "20px",
  1553. "height": "20px",
  1554. "float": "left",
  1555. "background": "url(" + "../x_component_process_Xform/$Form/default/icon/error.png) center center no-repeat"
  1556. }
  1557. }).inject(node);
  1558. var textNode = new Element("div", {
  1559. "styles": {
  1560. "line-height": "20px",
  1561. "margin-left": "20px",
  1562. "color": "red",
  1563. "word-break": "keep-all"
  1564. },
  1565. "text": text
  1566. }).inject(node);
  1567. return node;
  1568. },
  1569. notValidationMode: function (text) {
  1570. if (!this.isNotValidationMode) {
  1571. this.isNotValidationMode = true;
  1572. this.node.store("borderStyle", this.node.getStyles("border-left", "border-right", "border-top", "border-bottom"));
  1573. this.node.setStyle("border", "1px solid red");
  1574. this.errNode = this.createErrorNode(text).inject(this.node, "after");
  1575. this.showNotValidationMode(this.node);
  1576. }
  1577. },
  1578. showNotValidationMode: function (node) {
  1579. var p = node.getParent("div");
  1580. if (p) {
  1581. if (p.get("MWFtype") == "tab$Content") {
  1582. if (p.getParent("div").getStyle("display") == "none") {
  1583. var contentAreaNode = p.getParent("div").getParent("div");
  1584. var tabAreaNode = contentAreaNode.getPrevious("div");
  1585. var idx = contentAreaNode.getChildren().indexOf(p.getParent("div"));
  1586. var tabNode = tabAreaNode.getLast().getFirst().getChildren()[idx];
  1587. tabNode.click();
  1588. p = tabAreaNode.getParent("div");
  1589. }
  1590. }
  1591. this.showNotValidationMode(p);
  1592. }
  1593. },
  1594. validationMode: function () {
  1595. if (this.isNotValidationMode) {
  1596. this.isNotValidationMode = false;
  1597. this.node.setStyles(this.node.retrieve("borderStyle"));
  1598. if (this.errNode) {
  1599. this.errNode.destroy();
  1600. this.errNode = null;
  1601. }
  1602. }
  1603. },
  1604. validationConfigItem: function (routeName, data) {
  1605. var flag = (data.status == "all") ? true : (routeName == data.decision);
  1606. if (flag) {
  1607. var n = this.getData();
  1608. var v = (data.valueType == "value") ? n : n.length;
  1609. switch (data.operateor) {
  1610. case "isnull":
  1611. if (!v) {
  1612. this.notValidationMode(data.prompt);
  1613. return false;
  1614. }
  1615. break;
  1616. case "notnull":
  1617. if (v) {
  1618. this.notValidationMode(data.prompt);
  1619. return false;
  1620. }
  1621. break;
  1622. case "gt":
  1623. if (v > data.value) {
  1624. this.notValidationMode(data.prompt);
  1625. return false;
  1626. }
  1627. break;
  1628. case "lt":
  1629. if (v < data.value) {
  1630. this.notValidationMode(data.prompt);
  1631. return false;
  1632. }
  1633. break;
  1634. case "equal":
  1635. if (v == data.value) {
  1636. this.notValidationMode(data.prompt);
  1637. return false;
  1638. }
  1639. break;
  1640. case "neq":
  1641. if (v != data.value) {
  1642. this.notValidationMode(data.prompt);
  1643. return false;
  1644. }
  1645. break;
  1646. case "contain":
  1647. if (v.indexOf(data.value) != -1) {
  1648. this.notValidationMode(data.prompt);
  1649. return false;
  1650. }
  1651. break;
  1652. case "notcontain":
  1653. if (v.indexOf(data.value) == -1) {
  1654. this.notValidationMode(data.prompt);
  1655. return false;
  1656. }
  1657. break;
  1658. }
  1659. }
  1660. return true;
  1661. },
  1662. validationConfig: function (routeName, opinion) {
  1663. if (this.json.validationConfig) {
  1664. if (this.json.validationConfig.length) {
  1665. for (var i = 0; i < this.json.validationConfig.length; i++) {
  1666. var data = this.json.validationConfig[i];
  1667. if (!this.validationConfigItem(routeName, data)) return false;
  1668. }
  1669. }
  1670. return true;
  1671. }
  1672. return true;
  1673. },
  1674. /**
  1675. * 根据组件的校验设置进行校验。
  1676. * @param {String} routeName - 可选,路由名称.
  1677. * @example
  1678. * if( !this.form.get('fieldName').validation() ){
  1679. * return false;
  1680. * }
  1681. * @return {Boolean} 是否通过校验
  1682. */
  1683. validation: function (routeName, opinion) {
  1684. if (!this.validationConfig(routeName, opinion)) return false;
  1685. if (!this.json.validation) return true;
  1686. if (!this.json.validation.code) return true;
  1687. this.currentRouteName = routeName;
  1688. var flag = this.form.Macro.exec(this.json.validation.code, this);
  1689. this.currentRouteName = "";
  1690. if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
  1691. if (flag.toString() != "true") {
  1692. this.notValidationMode(flag);
  1693. return false;
  1694. }
  1695. return true;
  1696. }
  1697. });
  1698. MWF.xApplication.process.Xform.AttachmentDg = MWF.APPAttachmentDg = new Class({
  1699. Extends: MWF.APPAttachment,
  1700. loadAttachmentController: function () {
  1701. //MWF.require("MWF.widget.AttachmentController", function() {
  1702. var options = {
  1703. "style": this.json.style || "default",
  1704. "title": "附件区域DG",
  1705. "listStyle": this.json.listStyle || "icon",
  1706. "size": this.json.size || "max",
  1707. "resize": (this.json.resize === "y" || this.json.resize === "true"),
  1708. "attachmentCount": this.json.attachmentCount || 0,
  1709. "isUpload": (this.json.isUpload === "y" || this.json.isUpload === "true"),
  1710. "isDelete": (this.json.isDelete === "y" || this.json.isDelete === "true"),
  1711. "isReplace": (this.json.isReplace === "y" || this.json.isReplace === "true"),
  1712. "isDownload": (this.json.isDownload === "y" || this.json.isDownload === "true"),
  1713. "isSizeChange": (this.json.isSizeChange === "y" || this.json.isSizeChange === "true"),
  1714. "readonly": (this.json.readonly === "y" || this.json.readonly === "true"),
  1715. "availableListStyles": this.json.availableListStyles ? this.json.availableListStyles : ["list", "seq", "icon", "preview"],
  1716. "isDeleteOption": this.json.isDelete,
  1717. "isReplaceOption": this.json.isReplace,
  1718. "toolbarGroupHidden": this.json.toolbarGroupHidden || [],
  1719. "onOrder": function () {
  1720. this.fireEvent("change");
  1721. }.bind(this)
  1722. };
  1723. if (this.readonly) options.readonly = true;
  1724. if (this.form.json.attachmentStyle) {
  1725. options = Object.merge(options, this.form.json.attachmentStyle);
  1726. }
  1727. this.attachmentController = new MWF.xApplication.process.Xform.AttachmentController(this.node, this, options);
  1728. this.attachmentController.load();
  1729. // var d = this._getBusinessData();
  1730. // if (d) d.each(function (att) {
  1731. // this.attachmentController.addAttachment(att);
  1732. // }.bind(this));
  1733. this.form.businessData.attachmentList.each(function (att) {
  1734. if (att.site === (this.json.site || this.json.id)) this.attachmentController.addAttachment(att);
  1735. }.bind(this));
  1736. this.setAttachmentBusinessData();
  1737. },
  1738. setAttachmentBusinessData: function(){
  1739. if (this.attachmentController) {
  1740. if (this.attachmentController.attachments.length) {
  1741. var values = this.attachmentController.attachments.map(function (d) {
  1742. return {
  1743. "control": d.data.control,
  1744. "name": d.data.name,
  1745. "id": d.data.id,
  1746. "person": d.data.person,
  1747. "creatorUid": d.data.creatorUid,
  1748. "orderNumber": d.data.orderNumber,
  1749. "length": d.data.length,
  1750. "extension": d.data.extension,
  1751. "lastUpdateTime": d.data.lastUpdateTime,
  1752. "activityName": d.data.activityName
  1753. };
  1754. });
  1755. this._setBusinessData(values);
  1756. } else {
  1757. this._setBusinessData([]);
  1758. }
  1759. }
  1760. }
  1761. });