Attachment.js 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914
  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} AttachmentData
  929. * @property {String} id - 附件id.
  930. * @property {String} name - 附件标题.
  931. * @property {String} person - 上传人.
  932. * @property {Number} orderNumber - 排序号.
  933. * @property {String} activityName - 上传的节点.
  934. * @property {Object} control - 当前登录人员对附件拥有的权限.
  935. * @property {Boolean} control.allowRead - 是否允许阅读.
  936. * @property {Boolean} control.allowEdit - 是否允许编辑.
  937. * @property {Boolean} control.allowControl - 是否允许设置.
  938. * @property {Number} length - 附件大小.
  939. * @property {String} createTime - 创建时间.
  940. * @property {String} updateTime - 修改时间.
  941. * @property {String} extension - 附件扩展名.
  942. * @example
  943. * {
  944. "id": "56c4e86f-a4c8-4cc2-a150-1a0d2c5febcb", //附件ID
  945. "name": "133203a2-92e6-4653-9954-161b72ddb7f9.png", //附件名称
  946. "extension": "png", //附件扩展名
  947. "length": 43864, //附件大小
  948. "person": "xx@huqi@P", //附件上传人
  949. "lastUpdateTime": "2018-09-27 15:50:34", //最后的修改时间
  950. "lastUpdatePerson": "xx@huqi@P", //最后的修改人
  951. "activity": "e31ad938-c495-45a6-8d77-b8a9b61a165b", //附件上传的活动ID
  952. "activityName": "申请人", //附件上传的活动名称
  953. "activityType": "manual", //附件上传的活动类型
  954. "site": "$mediaOpinion", //附件存储位置(一般用于区分附件在哪个表单元素中显示)
  955. "type": "image/png" //附件类型(contentType)
  956. }
  957. */
  958. /** @class Actionbar 附件组件。
  959. * @example
  960. * //可以在脚本中获取该组件
  961. * //方法1:
  962. * var attachment = this.form.get("name"); //获取组件
  963. * //方法2
  964. * var attachment = this.target; //在组件事件脚本中获取
  965. * @extends MWF.xApplication.process.Xform.$Module
  966. * @category FormComponents
  967. * @hideconstructor
  968. */
  969. MWF.xApplication.process.Xform.Attachment = MWF.APPAttachment = new Class(
  970. /** @lends MWF.xApplication.process.Xform.Attachment# */
  971. {
  972. Extends: MWF.APP$Module,
  973. options: {
  974. "moduleEvents": ["upload", "delete", "afterDelete", "load", "change","download","open"]
  975. },
  976. initialize: function (node, json, form, options) {
  977. this.node = $(node);
  978. this.node.store("module", this);
  979. this.json = json;
  980. this.form = form;
  981. this.field = true;
  982. },
  983. _loadUserInterface: function () {
  984. this.node.empty();
  985. if (this.form.businessData.work.startTime){
  986. this.loadAttachmentController();
  987. this.fireEvent("load");
  988. }
  989. },
  990. reload: function(){
  991. this.node.empty();
  992. if (this.form.businessData.work.startTime){
  993. this.loadAttachmentController();
  994. }
  995. },
  996. loadAttachmentController: function () {
  997. //MWF.require("MWF.widget.AttachmentController", function() {
  998. var options = {
  999. "style": this.json.style || "default",
  1000. "title": "附件区域",
  1001. "listStyle": this.json.listStyle || "icon",
  1002. "size": this.json.size || "max",
  1003. "resize": (this.json.resize === "y" || this.json.resize === "true"),
  1004. "attachmentCount": this.json.attachmentCount || 0,
  1005. "isUpload": (this.json.isUpload === "y" || this.json.isUpload === "true"),
  1006. "isDelete": (this.json.isDelete === "y" || this.json.isDelete === "true"),
  1007. "isReplace": (this.json.isReplace === "y" || this.json.isReplace === "true"),
  1008. "isDownload": (this.json.isDownload === "y" || this.json.isDownload === "true"),
  1009. "isSizeChange": (this.json.isSizeChange === "y" || this.json.isSizeChange === "true"),
  1010. "readonly": (this.json.readonly === "y" || this.json.readonly === "true"),
  1011. "availableListStyles": this.json.availableListStyles ? this.json.availableListStyles : ["list", "seq", "icon", "preview"],
  1012. "isDeleteOption": this.json.isDelete,
  1013. "isReplaceOption": this.json.isReplace,
  1014. "toolbarGroupHidden": this.json.toolbarGroupHidden || [],
  1015. "onOrder": function () {
  1016. this.fireEvent("change");
  1017. }.bind(this)
  1018. };
  1019. if (this.readonly) options.readonly = true;
  1020. if (this.form.json.attachmentStyle) {
  1021. options = Object.merge(options, this.form.json.attachmentStyle);
  1022. }
  1023. //this.attachmentController = new MWF.widget.ATTER(this.node, this, options);
  1024. /**
  1025. * @summary 附件容器.
  1026. * @member {MWF.xApplication.process.Xform.AttachmentController}
  1027. * @example
  1028. * var attachmentController = this.form.get("fieldName").AttachmentController; //获取附件容器
  1029. * var attachmentList = attachmentController.attachments; //获取所有的附件
  1030. * var attachmentData = attachment[0].data; //获取第一个附件的数据
  1031. */
  1032. this.attachmentController = new MWF.xApplication.process.Xform.AttachmentController(this.node, this, options);
  1033. this.attachmentController.load();
  1034. this.form.businessData.attachmentList.each(function (att) {
  1035. //if (att.site===this.json.id || (this.json.isOpenInOffice && this.json.officeControlName===att.site)) this.attachmentController.addAttachment(att);
  1036. if (att.site === (this.json.site || this.json.id)) this.attachmentController.addAttachment(att);
  1037. }.bind(this));
  1038. this.setAttachmentBusinessData();
  1039. //}.bind(this));
  1040. },
  1041. setAttachmentBusinessData: function () {
  1042. if (this.attachmentController) {
  1043. if (this.attachmentController.attachments.length) {
  1044. var values = this.attachmentController.attachments.map(function (d) {
  1045. return d.data.name;
  1046. });
  1047. this._setBusinessData(values);
  1048. } else {
  1049. this._setBusinessData([]);
  1050. }
  1051. }
  1052. },
  1053. _loadEvents: function (editorConfig) {
  1054. Object.each(this.json.events, function (e, key) {
  1055. if (e.code) {
  1056. if (this.options.moduleEvents.indexOf(key) !== -1) {
  1057. this.addEvent(key, function (event) {
  1058. return this.form.Macro.fire(e.code, this, event);
  1059. }.bind(this));
  1060. } else {
  1061. this.node.addEvent(key, function (event) {
  1062. return this.form.Macro.fire(e.code, this, event);
  1063. }.bind(this));
  1064. }
  1065. }
  1066. }.bind(this));
  1067. },
  1068. isEmpty : function(){
  1069. var data = this.getData();
  1070. if( typeOf(data) === "array" ){
  1071. return data.length == 0
  1072. }else{
  1073. return !data;
  1074. }
  1075. },
  1076. /**
  1077. * @summary 获取当前组件所有附件的标题.如果没有附件返回null
  1078. * @example
  1079. * var getAttachmentNames = this.form.get("name").getData();
  1080. * @return {StringArray|Null} 附件标题.
  1081. */
  1082. getData: function () {
  1083. return (this.attachmentController) ? this.attachmentController.getAttachmentNames() : null;
  1084. },
  1085. createUploadFileNode: function () {
  1086. var accept = "*";
  1087. if (!this.json.attachmentExtType || (this.json.attachmentExtType.indexOf("other") != -1 && !this.json.attachmentExtOtherType)) {
  1088. } else {
  1089. accepts = [];
  1090. var otherType = this.json.attachmentExtOtherType;
  1091. this.json.attachmentExtType.each(function (v) {
  1092. switch (v) {
  1093. case "word":
  1094. accepts.push(".doc, .docx, .dot, .dotx");
  1095. break;
  1096. case "excel":
  1097. accepts.push(".xls, .xlsx, .xlsm, .xlt, .xltx");
  1098. break;
  1099. case "ppt":
  1100. accepts.push(".pptx, .ppt, .pot, .potx, .potm");
  1101. break;
  1102. case "txt":
  1103. accepts.push(".txt");
  1104. break;
  1105. case "pic":
  1106. accepts.push(".bmp, .gif, .psd, .jpeg, .jpg, .png");
  1107. break;
  1108. case "pdf":
  1109. accepts.push(".pdf");
  1110. break;
  1111. case "zip":
  1112. accepts.push(".zip, .rar");
  1113. break;
  1114. case "audio":
  1115. accepts.push(".mp3, .wav, .wma, .wmv, .flac, .ape");
  1116. break;
  1117. case "video":
  1118. accepts.push(".avi, .mkv, .mov, .ogg, .mp4, .mpeg");
  1119. break;
  1120. case "other":
  1121. if (this.json.attachmentExtOtherType) accepts.push(this.json.attachmentExtOtherType);
  1122. break;
  1123. }
  1124. }.bind(this));
  1125. accept = accepts.join(", ");
  1126. }
  1127. var size = 0;
  1128. if (this.json.attachmentSize) size = this.json.attachmentSize.toFloat();
  1129. this.attachmentController.doUploadAttachment({ "site": (this.json.site || this.json.id) }, this.form.workAction.action, "uploadAttachment", { "id": this.form.businessData.work.id }, null, function (o) {
  1130. if (o.id) {
  1131. this.form.workAction.getAttachment(o.id, this.form.businessData.work.id, function (json) {
  1132. if (json.data) {
  1133. if (!json.data.control) json.data.control = {};
  1134. this.attachmentController.addAttachment(json.data, o.messageId);
  1135. }
  1136. this.attachmentController.checkActions();
  1137. this.setAttachmentBusinessData();
  1138. this.fireEvent("upload", [json.data]);
  1139. this.fireEvent("change");
  1140. }.bind(this))
  1141. }
  1142. this.attachmentController.checkActions();
  1143. }.bind(this), function (files) {
  1144. if (files.length) {
  1145. if ((files.length + this.attachmentController.attachments.length > this.attachmentController.options.attachmentCount) && this.attachmentController.options.attachmentCount > 0) {
  1146. var content = MWF.xApplication.process.Xform.LP.uploadMore;
  1147. content = content.replace("{n}", this.attachmentController.options.attachmentCount);
  1148. this.form.notice(content, "error");
  1149. return false;
  1150. }
  1151. }
  1152. return true;
  1153. }.bind(this), true, accept, size, function (o) { //错误的回调
  1154. if (o.messageId && this.attachmentController.messageItemList) {
  1155. var message = this.attachmentController.messageItemList[o.messageId];
  1156. if( message && message.node )message.node.destroy();
  1157. }
  1158. }.bind(this));
  1159. // this.uploadFileAreaNode = new Element("div");
  1160. // var html = "<input name=\"file\" type=\"file\" multiple/>";
  1161. // this.uploadFileAreaNode.set("html", html);
  1162. //
  1163. // this.fileUploadNode = this.uploadFileAreaNode.getFirst();
  1164. // this.fileUploadNode.addEvent("change", function(){
  1165. //
  1166. // var files = this.fileUploadNode.files;
  1167. // if (files.length){
  1168. // if ((files.length+this.attachmentController.attachments.length > this.attachmentController.options.attachmentCount) && this.attachmentController.options.attachmentCount>0){
  1169. // var content = MWF.xApplication.process.Xform.LP.uploadMore;
  1170. // content = content.replace("{n}", this.attachmentController.options.attachmentCount);
  1171. // this.form.notice(content, "error");
  1172. // }else{
  1173. // for (var i = 0; i < files.length; i++) {
  1174. // var file = files.item(i);
  1175. //
  1176. // var formData = new FormData();
  1177. // formData.append('site', this.json.id);
  1178. // formData.append('file', file);
  1179. //
  1180. // //formData.append('folder', folderId);
  1181. //
  1182. // this.form.workAction.uploadAttachment(this.form.businessData.work.id ,function(o, text){
  1183. // if (o.id){
  1184. // this.form.workAction.getAttachment(o.id, this.form.businessData.work.id, function(json){
  1185. // if (json.data) this.attachmentController.addAttachment(json.data);
  1186. // this.attachmentController.checkActions();
  1187. //
  1188. // this.fireEvent("upload", [json.data]);
  1189. // }.bind(this))
  1190. // }
  1191. // this.attachmentController.checkActions();
  1192. // }.bind(this), null, formData, file);
  1193. // }
  1194. // }
  1195. // }
  1196. // }.bind(this));
  1197. },
  1198. uploadAttachment: function (e, node) {
  1199. if (window.o2android && window.o2android.uploadAttachment) {
  1200. window.o2android.uploadAttachment((this.json.site || this.json.id));
  1201. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.uploadAttachment) {
  1202. window.webkit.messageHandlers.uploadAttachment.postMessage({ "site": (this.json.site || this.json.id) });
  1203. } else {
  1204. // if (!this.uploadFileAreaNode){
  1205. this.createUploadFileNode();
  1206. // }
  1207. // this.fileUploadNode.click();
  1208. }
  1209. },
  1210. deleteAttachments: function (e, node, attachments) {
  1211. var names = [];
  1212. attachments.each(function (attachment) {
  1213. names.push(attachment.data.name);
  1214. }.bind(this));
  1215. // if ((window.o2 && window.o2.replaceAttachment) || (window.webkit && window.webkit.messageHandlers)){
  1216. // if (window.confirm(MWF.xApplication.process.Xform.LP.deleteAttachment+"( "+names.join(", ")+" )")){
  1217. // while (attachments.length){
  1218. // attachment = attachments.shift();
  1219. // this.deleteAttachment(attachment);
  1220. // }
  1221. // }
  1222. // }else {
  1223. // var tmpNode = new Element("div", {
  1224. // "styles": {
  1225. // "background-color": "#0000ff",
  1226. // "border-style": "solid",
  1227. // "border-color": "#fff",
  1228. // "border-width": "1",
  1229. // "box-shadow": "0px 0px 20px #999",
  1230. // "z-index": "20000",
  1231. // "overflow": "hidden",
  1232. // "font-size": "14px",
  1233. // "height": "160px",
  1234. // "padding": "0px",
  1235. // "width": "300px",
  1236. // "position": "absolute",
  1237. // "top": "50px",
  1238. // "left": "20px",
  1239. // "opacity": 1,
  1240. // "border-radius": "5px"
  1241. // }
  1242. // }).inject(this.form.app.content);
  1243. var _self = this;
  1244. this.form.confirm("warn", e, MWF.xApplication.process.Xform.LP.deleteAttachmentTitle, MWF.xApplication.process.Xform.LP.deleteAttachment + "( " + names.join(", ") + " )", 300, 120, function () {
  1245. while (attachments.length) {
  1246. var attachment = attachments.shift();
  1247. _self.deleteAttachment(attachment);
  1248. }
  1249. this.close();
  1250. }, function () {
  1251. this.close();
  1252. }, null, null, this.form.json.confirmStyle);
  1253. },
  1254. deleteAttachment: function (attachment) {
  1255. this.fireEvent("delete", [attachment.data]);
  1256. var id = attachment.data.id;
  1257. this.form.workAction.deleteAttachment(attachment.data.id, this.form.businessData.work.id, function (josn) {
  1258. this.attachmentController.removeAttachment(attachment);
  1259. this.attachmentController.checkActions();
  1260. if (this.form.officeList) {
  1261. this.form.officeList.each(function (office) {
  1262. if (office.openedAttachment) {
  1263. if (office.openedAttachment.id == id) {
  1264. office.loadOfficeEdit();
  1265. }
  1266. }
  1267. }.bind(this));
  1268. }
  1269. this.setAttachmentBusinessData();
  1270. this.fireEvent("afterDelete", [attachment.data]);
  1271. this.fireEvent("change");
  1272. }.bind(this));
  1273. },
  1274. replaceAttachment: function (e, node, attachment) {
  1275. if (window.o2android && window.o2android.replaceAttachment) {
  1276. window.o2android.replaceAttachment(attachment.data.id, (this.json.site || this.json.id));
  1277. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.replaceAttachment) {
  1278. window.webkit.messageHandlers.replaceAttachment.postMessage({ "id": attachment.data.id, "site": (this.json.site || this.json.id) });
  1279. } else {
  1280. var _self = this;
  1281. this.form.confirm("warn", e, MWF.xApplication.process.Xform.LP.replaceAttachmentTitle, MWF.xApplication.process.Xform.LP.replaceAttachment + "( " + attachment.data.name + " )", 350, 120, function () {
  1282. _self.replaceAttachmentFile(attachment);
  1283. this.close();
  1284. }, function () {
  1285. this.close();
  1286. }, null, null, this.form.json.confirmStyle);
  1287. }
  1288. },
  1289. createReplaceFileNode: function (attachment) {
  1290. var accept = "*";
  1291. if (!this.json.attachmentExtType || this.json.attachmentExtType.indexOf("other") != -1 && !this.json.attachmentExtOtherType) {
  1292. } else {
  1293. accepts = [];
  1294. var otherType = this.json.attachmentExtOtherType;
  1295. this.json.attachmentExtType.each(function (v) {
  1296. switch (v) {
  1297. case "word":
  1298. accepts.push(".doc, .docx, .dot, .dotx");
  1299. break;
  1300. case "excel":
  1301. accepts.push(".xls, .xlsx, .xlsm, .xlt, .xltx");
  1302. break;
  1303. case "ppt":
  1304. accepts.push(".pptx, .ppt, .pot, .potx, .potm");
  1305. break;
  1306. case "txt":
  1307. accepts.push(".txt");
  1308. break;
  1309. case "pic":
  1310. accepts.push(".bmp, .gif, .psd, .jpeg, .jpg");
  1311. break;
  1312. case "pdf":
  1313. accepts.push(".pdf");
  1314. break;
  1315. case "zip":
  1316. accepts.push(".zip, .rar");
  1317. break;
  1318. case "audio":
  1319. accepts.push(".mp3, .wav, .wma, .wmv, .flac, .ape");
  1320. break;
  1321. case "video":
  1322. accepts.push(".avi, .mkv, .mov, .ogg, .mp4, .mpeg");
  1323. break;
  1324. case "other":
  1325. if (this.json.attachmentExtOtherType) accepts.push(this.json.attachmentExtOtherType);
  1326. break;
  1327. }
  1328. });
  1329. accept = accepts.join(", ");
  1330. }
  1331. var size = 0;
  1332. if (this.json.attachmentSize) size = this.json.attachmentSize.toFloat();
  1333. this.attachmentController.doUploadAttachment({ "site": (this.json.site || this.json.id) }, this.form.workAction.action, "replaceAttachment",
  1334. { "id": attachment.data.id, "workid": this.form.businessData.work.id }, null, function (o) {
  1335. this.form.workAction.getAttachment(attachment.data.id, this.form.businessData.work.id, function (json) {
  1336. attachment.data = json.data;
  1337. attachment.reload();
  1338. if (o.messageId && this.attachmentController.messageItemList) {
  1339. var message = this.attachmentController.messageItemList[o.messageId];
  1340. if( message && message.node )message.node.destroy();
  1341. }
  1342. this.attachmentController.checkActions();
  1343. }.bind(this))
  1344. }.bind(this), null, true, accept, size, function (o) { //错误的回调
  1345. if (o.messageId && this.attachmentController.messageItemList) {
  1346. var message = this.attachmentController.messageItemList[o.messageId];
  1347. if( message && message.node )message.node.destroy();
  1348. }
  1349. }.bind(this));
  1350. // this.replaceFileAreaNode = new Element("div");
  1351. // var html = "<input name=\"file\" type=\"file\" multiple/>";
  1352. // this.replaceFileAreaNode.set("html", html);
  1353. //
  1354. // this.fileReplaceNode = this.replaceFileAreaNode.getFirst();
  1355. // this.fileReplaceNode.addEvent("change", function(){
  1356. //
  1357. // var files = this.fileReplaceNode.files;
  1358. // if (files.length){
  1359. // for (var i = 0; i < files.length; i++) {
  1360. // var file = files.item(i);
  1361. //
  1362. // var formData = new FormData();
  1363. // formData.append('file', file);
  1364. // // formData.append('site', this.json.id);
  1365. //
  1366. // this.form.workAction.replaceAttachment(attachment.data.id, this.form.businessData.work.id ,function(o, text){
  1367. // this.form.workAction.getAttachment(attachment.data.id, this.form.businessData.work.id, function(json){
  1368. // attachment.data = json.data;
  1369. // attachment.reload();
  1370. // this.attachmentController.checkActions();
  1371. // }.bind(this))
  1372. // }.bind(this), null, formData, file);
  1373. // }
  1374. // }
  1375. // }.bind(this));
  1376. },
  1377. replaceAttachmentFile: function (attachment) {
  1378. //if (!this.replaceFileAreaNode){
  1379. this.createReplaceFileNode(attachment);
  1380. // }
  1381. // this.fileReplaceNode.click();
  1382. },
  1383. queryDownload : function( att ){
  1384. if( this.json.events && this.json.events.queryDownload && this.json.events.queryDownload.code ){
  1385. var flag = this.form.Macro.exec(this.json.events.queryDownload.code, att );
  1386. if( flag === false ){
  1387. return false
  1388. }else{
  1389. return true;
  1390. }
  1391. }else{
  1392. return true;
  1393. }
  1394. },
  1395. queryOpen : function( att ){
  1396. if( this.json.events && this.json.events.queryOpen && this.json.events.queryOpen.code ){
  1397. var flag = this.form.Macro.exec(this.json.events.queryOpen.code, att );
  1398. if( flag === false ){
  1399. return false
  1400. }else{
  1401. return true;
  1402. }
  1403. }else{
  1404. return true;
  1405. }
  1406. },
  1407. //小程序文件是否支持打开
  1408. checkMiniProgramFile: function(ext) {
  1409. var exts = ["doc", "docx", "xls", "xlsx", "ppt", "pptx", "pdf"];
  1410. for(var i = 0; i < exts.length; i++){
  1411. if(ext === exts[i]){
  1412. return true;
  1413. }
  1414. }
  1415. return false;
  1416. },
  1417. downloadAttachment: function (e, node, attachments) {
  1418. if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
  1419. attachments.each(function (att) {
  1420. if( !this.queryDownload( att ) )return;
  1421. if (window.o2android && window.o2android.downloadAttachment) {
  1422. window.o2android.downloadAttachment(att.data.id);
  1423. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1424. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1425. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1426. wx.miniProgram.navigateTo({
  1427. url: '../file/download?attId=' + att.data.id + '&type=work&work=' + this.form.businessData.work.id
  1428. });
  1429. } else {
  1430. if (layout.mobile) {
  1431. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1432. this.form.workAction.getAttachmentUrl(att.data.id, this.form.businessData.work.id, function (url) {
  1433. var xtoken = Cookie.read("x-token");
  1434. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1435. });
  1436. } else {
  1437. this.form.workAction.getAttachmentStream(att.data.id, this.form.businessData.work.id);
  1438. }
  1439. }
  1440. this.fireEvent("download",[att])
  1441. }.bind(this));
  1442. } else {
  1443. attachments.each(function (att) {
  1444. if( !this.queryDownload( att ) )return;
  1445. if (window.o2android && window.o2android.downloadAttachment) {
  1446. window.o2android.downloadAttachment(att.data.id);
  1447. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1448. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1449. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1450. wx.miniProgram.navigateTo({
  1451. url: '../file/download?attId=' + att.data.id + '&type=work&workCompleted=' + this.form.businessData.workCompleted.id
  1452. });
  1453. } else {
  1454. if (layout.mobile) {
  1455. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1456. this.form.workAction.getAttachmentWorkcompletedUrl(att.data.id, this.form.businessData.workCompleted.id, function (url) {
  1457. var xtoken = Cookie.read("x-token");
  1458. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1459. });
  1460. } else {
  1461. this.form.workAction.getWorkcompletedAttachmentStream(att.data.id, this.form.businessData.workCompleted.id);
  1462. }
  1463. }
  1464. this.fireEvent("download",[att])
  1465. }.bind(this));
  1466. }
  1467. },
  1468. openAttachment: function (e, node, attachments) {
  1469. if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
  1470. attachments.each(function (att) {
  1471. if( !this.queryOpen( att ) )return;
  1472. if (window.o2android && window.o2android.downloadAttachment) {
  1473. window.o2android.downloadAttachment(att.data.id);
  1474. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1475. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1476. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1477. wx.miniProgram.navigateTo({
  1478. url: '../file/download?attId=' + att.data.id + '&type=work&work=' + this.form.businessData.work.id
  1479. });
  1480. } else {
  1481. if (layout.mobile) {
  1482. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1483. this.form.workAction.getAttachmentUrl(att.data.id, this.form.businessData.work.id, function (url) {
  1484. var xtoken = Cookie.read("x-token");
  1485. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1486. });
  1487. } else {
  1488. this.form.workAction.getAttachmentData(att.data.id, this.form.businessData.work.id);
  1489. }
  1490. }
  1491. this.fireEvent("open",[att])
  1492. }.bind(this));
  1493. } else {
  1494. attachments.each(function (att) {
  1495. if( !this.queryOpen( att ) )return;
  1496. if (window.o2android && window.o2android.downloadAttachment) {
  1497. window.o2android.downloadAttachment(att.data.id);
  1498. } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
  1499. window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
  1500. } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
  1501. wx.miniProgram.navigateTo({
  1502. url: '../file/download?attId=' + att.data.id + '&type=work&workCompleted=' + this.form.businessData.workCompleted.id
  1503. });
  1504. } else {
  1505. if (layout.mobile) {
  1506. //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
  1507. this.form.workAction.getAttachmentWorkcompletedUrl(att.data.id, ((this.form.businessData.workCompleted) ? this.form.businessData.workCompleted.id : this.form.businessData.work.id), function (url) {
  1508. var xtoken = Cookie.read("x-token");
  1509. window.location = o2.filterUrl(url + "?x-token=" + xtoken);
  1510. });
  1511. } else {
  1512. this.form.workAction.getWorkcompletedAttachmentData(att.data.id, ((this.form.businessData.workCompleted) ? this.form.businessData.workCompleted.id : this.form.businessData.work.id));
  1513. }
  1514. }
  1515. this.fireEvent("open",[att])
  1516. }.bind(this));
  1517. }
  1518. //this.downloadAttachment(e, node, attachment);
  1519. },
  1520. getAttachmentUrl: function (attachment, callback) {
  1521. if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
  1522. this.form.workAction.getAttachmentUrl(attachment.data.id, this.form.businessData.work.id, callback);
  1523. } else {
  1524. this.form.workAction.getAttachmentWorkcompletedUrl(attachment.data.id, this.form.businessData.workCompleted.id, callback);
  1525. }
  1526. },
  1527. getTextData: function(){
  1528. var data = [];
  1529. this.attachmentController.attachments.each(function(att){
  1530. var o = {
  1531. "id": att.data.id,
  1532. "person": att.data.person,
  1533. "creatorUid": att.data.creatorUid,
  1534. "name": att.data.name,
  1535. "orderNumber": att.data.orderNumber,
  1536. "length": att.data.length,
  1537. "extension": att.data.extension,
  1538. "lastUpdateTime": att.data.lastUpdateTime,
  1539. "activityName": att.data.activityName
  1540. }
  1541. data.push(o);
  1542. });
  1543. return data;
  1544. },
  1545. /**
  1546. * @summary 为组件重新设置附件,该附件必须已经上传。
  1547. * @param data{AttachmentData} .
  1548. */
  1549. setData: function(data){
  1550. this.attachmentController.clear();
  1551. data.each(function (att) {
  1552. var attachment = this.form.businessData.attachmentList.find(function(a){
  1553. return a.id==att.id;
  1554. });
  1555. var attData = attachment || att;
  1556. this.attachmentController.addAttachment(attData);
  1557. }.bind(this));
  1558. this.setAttachmentBusinessData();
  1559. },
  1560. createErrorNode: function (text) {
  1561. var node = new Element("div");
  1562. var iconNode = new Element("div", {
  1563. "styles": {
  1564. "width": "20px",
  1565. "height": "20px",
  1566. "float": "left",
  1567. "background": "url(" + "../x_component_process_Xform/$Form/default/icon/error.png) center center no-repeat"
  1568. }
  1569. }).inject(node);
  1570. var textNode = new Element("div", {
  1571. "styles": {
  1572. "line-height": "20px",
  1573. "margin-left": "20px",
  1574. "color": "red",
  1575. "word-break": "keep-all"
  1576. },
  1577. "text": text
  1578. }).inject(node);
  1579. return node;
  1580. },
  1581. notValidationMode: function (text) {
  1582. if (!this.isNotValidationMode) {
  1583. this.isNotValidationMode = true;
  1584. this.node.store("borderStyle", this.node.getStyles("border-left", "border-right", "border-top", "border-bottom"));
  1585. this.node.setStyle("border", "1px solid red");
  1586. this.errNode = this.createErrorNode(text).inject(this.node, "after");
  1587. this.showNotValidationMode(this.node);
  1588. }
  1589. },
  1590. showNotValidationMode: function (node) {
  1591. var p = node.getParent("div");
  1592. if (p) {
  1593. if (p.get("MWFtype") == "tab$Content") {
  1594. if (p.getParent("div").getStyle("display") == "none") {
  1595. var contentAreaNode = p.getParent("div").getParent("div");
  1596. var tabAreaNode = contentAreaNode.getPrevious("div");
  1597. var idx = contentAreaNode.getChildren().indexOf(p.getParent("div"));
  1598. var tabNode = tabAreaNode.getLast().getFirst().getChildren()[idx];
  1599. tabNode.click();
  1600. p = tabAreaNode.getParent("div");
  1601. }
  1602. }
  1603. this.showNotValidationMode(p);
  1604. }
  1605. },
  1606. validationMode: function () {
  1607. if (this.isNotValidationMode) {
  1608. this.isNotValidationMode = false;
  1609. this.node.setStyles(this.node.retrieve("borderStyle"));
  1610. if (this.errNode) {
  1611. this.errNode.destroy();
  1612. this.errNode = null;
  1613. }
  1614. }
  1615. },
  1616. validationConfigItem: function (routeName, data) {
  1617. var flag = (data.status == "all") ? true : (routeName == data.decision);
  1618. if (flag) {
  1619. var n = this.getData();
  1620. var v = (data.valueType == "value") ? n : n.length;
  1621. switch (data.operateor) {
  1622. case "isnull":
  1623. if (!v) {
  1624. this.notValidationMode(data.prompt);
  1625. return false;
  1626. }
  1627. break;
  1628. case "notnull":
  1629. if (v) {
  1630. this.notValidationMode(data.prompt);
  1631. return false;
  1632. }
  1633. break;
  1634. case "gt":
  1635. if (v > data.value) {
  1636. this.notValidationMode(data.prompt);
  1637. return false;
  1638. }
  1639. break;
  1640. case "lt":
  1641. if (v < data.value) {
  1642. this.notValidationMode(data.prompt);
  1643. return false;
  1644. }
  1645. break;
  1646. case "equal":
  1647. if (v == data.value) {
  1648. this.notValidationMode(data.prompt);
  1649. return false;
  1650. }
  1651. break;
  1652. case "neq":
  1653. if (v != data.value) {
  1654. this.notValidationMode(data.prompt);
  1655. return false;
  1656. }
  1657. break;
  1658. case "contain":
  1659. if (v.indexOf(data.value) != -1) {
  1660. this.notValidationMode(data.prompt);
  1661. return false;
  1662. }
  1663. break;
  1664. case "notcontain":
  1665. if (v.indexOf(data.value) == -1) {
  1666. this.notValidationMode(data.prompt);
  1667. return false;
  1668. }
  1669. break;
  1670. }
  1671. }
  1672. return true;
  1673. },
  1674. validationConfig: function (routeName, opinion) {
  1675. if (this.json.validationConfig) {
  1676. if (this.json.validationConfig.length) {
  1677. for (var i = 0; i < this.json.validationConfig.length; i++) {
  1678. var data = this.json.validationConfig[i];
  1679. if (!this.validationConfigItem(routeName, data)) return false;
  1680. }
  1681. }
  1682. return true;
  1683. }
  1684. return true;
  1685. },
  1686. /**
  1687. * @summary 根据组件的校验设置进行校验。
  1688. * @param {String} [routeName] - 可选,路由名称.
  1689. * @example
  1690. * if( !this.form.get('fieldName').validation() ){
  1691. * return false;
  1692. * }
  1693. * @return {Boolean} 是否通过校验
  1694. */
  1695. validation: function (routeName, opinion) {
  1696. if (!this.validationConfig(routeName, opinion)) return false;
  1697. if (!this.json.validation) return true;
  1698. if (!this.json.validation.code) return true;
  1699. this.currentRouteName = routeName;
  1700. var flag = this.form.Macro.exec(this.json.validation.code, this);
  1701. this.currentRouteName = "";
  1702. if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
  1703. if (flag.toString() != "true") {
  1704. this.notValidationMode(flag);
  1705. return false;
  1706. }
  1707. return true;
  1708. }
  1709. });
  1710. MWF.xApplication.process.Xform.AttachmentDg = MWF.APPAttachmentDg = new Class({
  1711. Extends: MWF.APPAttachment,
  1712. loadAttachmentController: function () {
  1713. //MWF.require("MWF.widget.AttachmentController", function() {
  1714. var options = {
  1715. "style": this.json.style || "default",
  1716. "title": "附件区域DG",
  1717. "listStyle": this.json.listStyle || "icon",
  1718. "size": this.json.size || "max",
  1719. "resize": (this.json.resize === "y" || this.json.resize === "true"),
  1720. "attachmentCount": this.json.attachmentCount || 0,
  1721. "isUpload": (this.json.isUpload === "y" || this.json.isUpload === "true"),
  1722. "isDelete": (this.json.isDelete === "y" || this.json.isDelete === "true"),
  1723. "isReplace": (this.json.isReplace === "y" || this.json.isReplace === "true"),
  1724. "isDownload": (this.json.isDownload === "y" || this.json.isDownload === "true"),
  1725. "isSizeChange": (this.json.isSizeChange === "y" || this.json.isSizeChange === "true"),
  1726. "readonly": (this.json.readonly === "y" || this.json.readonly === "true"),
  1727. "availableListStyles": this.json.availableListStyles ? this.json.availableListStyles : ["list", "seq", "icon", "preview"],
  1728. "isDeleteOption": this.json.isDelete,
  1729. "isReplaceOption": this.json.isReplace,
  1730. "toolbarGroupHidden": this.json.toolbarGroupHidden || [],
  1731. "onOrder": function () {
  1732. this.fireEvent("change");
  1733. }.bind(this)
  1734. };
  1735. if (this.readonly) options.readonly = true;
  1736. if (this.form.json.attachmentStyle) {
  1737. options = Object.merge(options, this.form.json.attachmentStyle);
  1738. }
  1739. this.attachmentController = new MWF.xApplication.process.Xform.AttachmentController(this.node, this, options);
  1740. this.attachmentController.load();
  1741. // var d = this._getBusinessData();
  1742. // if (d) d.each(function (att) {
  1743. // this.attachmentController.addAttachment(att);
  1744. // }.bind(this));
  1745. this.form.businessData.attachmentList.each(function (att) {
  1746. if (att.site === (this.json.site || this.json.id)) this.attachmentController.addAttachment(att);
  1747. }.bind(this));
  1748. this.setAttachmentBusinessData();
  1749. },
  1750. setAttachmentBusinessData: function(){
  1751. if (this.attachmentController) {
  1752. if (this.attachmentController.attachments.length) {
  1753. var values = this.attachmentController.attachments.map(function (d) {
  1754. return {
  1755. "control": d.data.control,
  1756. "name": d.data.name,
  1757. "id": d.data.id,
  1758. "person": d.data.person,
  1759. "creatorUid": d.data.creatorUid,
  1760. "orderNumber": d.data.orderNumber,
  1761. "length": d.data.length,
  1762. "extension": d.data.extension,
  1763. "lastUpdateTime": d.data.lastUpdateTime,
  1764. "activityName": d.data.activityName
  1765. };
  1766. });
  1767. this._setBusinessData(values);
  1768. } else {
  1769. this._setBusinessData([]);
  1770. }
  1771. }
  1772. }
  1773. });