| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902 |
- MWF.xDesktop.requireApp("process.Xform", "$Module", null, false);
- MWF.require("MWF.widget.AttachmentController", null, false);
- MWF.xApplication.process.Xform.AttachmentController = new Class({
- Extends: MWF.widget.ATTER,
- "options": {
- "officeFiles": ["doc", "docx", "dotx", "dot", "xls", "xlsx", "xlsm", "xlt", "xltx", "pptx", "ppt", "pot", "potx", "potm", "pdf"],
- "checkTextEnable": true
- },
- checkAttachmentDeleteAction: function () {
- if (this.options.readonly) {
- this.setAttachmentsAction("delete", false);
- return false;
- }
- if (this.options.isDeleteOption !== "n") {
- if (this.attachments.length) {
- var user = layout.session.user.distinguishedName;
- for (var i = 0; i < this.attachments.length; i++) {
- var flag = true;
- var att = this.attachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (this.options.isDeleteOption === "o") {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- if (att.data.person !== layout.desktop.session.user.distinguishedName) flag = false;
- } else if (this.options.isDeleteOption === "a") {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- if (att.data.activity !== this.module.form.businessData.activity.id) flag = false;
- } else if (this.options.isDeleteOption === "ao") {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- if ((att.data.activity !== this.module.form.businessData.activity.id) || (att.data.person !== layout.desktop.session.user.distinguishedName)) flag = false;
- } else {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- }
- if (flag) {
- this.setAttachmentAction(att, "delete", true);
- } else {
- this.setAttachmentAction(att, "delete", false);
- }
- }
- }
- } else {
- this.setAttachmentsAction("delete", false);
- }
- },
- checkDeleteAction: function () {
- this.checkAttachmentDeleteAction();
- if (this.options.readonly) {
- this.setActionDisabled(this.deleteAction);
- this.setActionDisabled(this.min_deleteAction);
- return false;
- }
- if (this.options.isDeleteOption !== "n") {
- if (this.selectedAttachments.length) {
- var user = layout.session.user.distinguishedName;
- var flag = true;
- if (this.options.isDeleteOption === "o") {
- for (var i = 0; i < this.selectedAttachments.length; i++) {
- var att = this.selectedAttachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (!att.data.control.allowEdit && att.data.person !== user) {
- flag = false;
- break;
- }
- if (att.data.person !== layout.desktop.session.user.distinguishedName) {
- flag = false;
- break;
- }
- }
- } else if (this.options.isDeleteOption === "a") {
- for (var i = 0; i < this.selectedAttachments.length; i++) {
- var att = this.selectedAttachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (!att.data.control.allowEdit && att.data.person !== user) {
- flag = false;
- break;
- }
- if (att.data.activity !== this.module.form.businessData.activity.id) {
- flag = false;
- break;
- }
- }
- } else if (this.options.isDeleteOption === "ao") {
- for (var i = 0; i < this.selectedAttachments.length; i++) {
- var att = this.selectedAttachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (!att.data.control.allowEdit && att.data.person !== user) {
- flag = false;
- break;
- }
- if ((att.data.activity !== this.module.form.businessData.activity.id) || (att.data.person !== layout.desktop.session.user.distinguishedName)) {
- flag = false;
- break;
- }
- }
- } else {
- for (var i = 0; i < this.selectedAttachments.length; i++) {
- var att = this.selectedAttachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (!att.data.control.allowEdit && att.data.person !== user) {
- flag = false;
- break;
- }
- }
- }
- if (flag) {
- this.setActionEnabled(this.deleteAction);
- this.setActionEnabled(this.min_deleteAction);
- } else {
- this.setActionDisabled(this.deleteAction);
- this.setActionDisabled(this.min_deleteAction);
- }
- } else {
- this.setActionDisabled(this.deleteAction);
- this.setActionDisabled(this.min_deleteAction);
- }
- } else {
- // if (!this.options.isDelete){
- this.setActionDisabled(this.deleteAction);
- this.setActionDisabled(this.min_deleteAction);
- // }else{
- // if (this.selectedAttachments.length){
- // this.setActionEnabled(this.deleteAction);
- // this.setActionEnabled(this.min_deleteAction);
- // }else{
- // this.setActionDisabled(this.deleteAction);
- // this.setActionDisabled(this.min_deleteAction);
- // }
- // }
- }
- },
- isAttDeleteAvailable: function (att) {
- if (this.options.readonly) return false;
- if (this.options.toolbarGroupHidden.contains("edit")) return false;
- if (this.options.isDeleteOption === "n") return false;
- var user = layout.session.user.distinguishedName;
- var flag = true;
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (this.options.isDeleteOption === "o") {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- if (att.data.person !== layout.desktop.session.user.distinguishedName) flag = false;
- } else if (this.options.isDeleteOption === "a") {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- if (att.data.activity !== this.module.form.businessData.activity.id) flag = false;
- } else if (this.options.isDeleteOption === "ao") {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- if ((att.data.activity !== this.module.form.businessData.activity.id) || (att.data.person !== layout.desktop.session.user.distinguishedName)) flag = false;
- } else {
- if (!att.data.control.allowEdit && att.data.person !== user) flag = false;
- }
- return flag;
- },
- openInOfficeControl: function (att, office) {
- if (office) {
- if (!office.openedAttachment || office.openedAttachment.id !== att.id) {
- office.save();
- if (this.module.form.businessData.workCompleted) {
- MWF.Actions.get("x_processplatform_assemble_surface").getAttachmentWorkcompletedUrl(att.id, this.module.form.businessData.workCompleted.id, function (url) {
- office.openedAttachment = { "id": att.id, "site": this.module.json.name, "name": att.name };
- office.officeOCX.BeginOpenFromURL(url, true, this.readonly);
- }.bind(this));
- } else {
- MWF.Actions.get("x_processplatform_assemble_surface").getAttachmentUrl(att.id, this.module.form.businessData.work.id, function (url) {
- office.openedAttachment = { "id": att.id, "site": this.module.json.name, "name": att.name };
- office.officeOCX.BeginOpenFromURL(url, true, this.readonly);
- }.bind(this));
- }
- }
- }
- },
- checkReplaceAction: function () {
- if (this.options.isReplaceHidden) return;
- if (this.options.readonly) {
- this.setActionDisabled(this.replaceAction);
- this.setActionDisabled(this.min_replaceAction);
- return false;
- }
- if (this.options.isReplaceOption !== "n") {
- if (this.selectedAttachments.length && this.selectedAttachments.length === 1) {
- var att = this.selectedAttachments[0];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- var user = layout.session.user.distinguishedName;
- var flag = true;
- if (this.options.isReplaceOption === "o") {
- flag = att.data.person === layout.desktop.session.user.distinguishedName;
- }
- if (this.options.isReplaceOption === "a") {
- flag = att.data.activity === this.module.form.businessData.activity.id;
- }
- if (this.options.isReplaceOption === "ao") {
- flag = (att.data.person === layout.desktop.session.user.distinguishedName && att.data.activity === this.module.form.businessData.activity.id);
- }
- if (flag && !att.data.control.allowEdit && att.data.person !== user) {
- flag = false;
- }
- if (flag) {
- this.setActionEnabled(this.replaceAction);
- this.setActionEnabled(this.min_replaceAction);
- } else {
- this.setActionDisabled(this.replaceAction);
- this.setActionDisabled(this.min_replaceAction);
- }
- } else {
- this.setActionDisabled(this.replaceAction);
- this.setActionDisabled(this.min_replaceAction);
- }
- } else {
- // if (!this.options.isReplace){
- this.setActionDisabled(this.replaceAction);
- this.setActionDisabled(this.min_replaceAction);
- // }else{
- // if (this.selectedAttachments.length && this.selectedAttachments.length===1){
- // this.setActionEnabled(this.replaceAction);
- // this.setActionEnabled(this.min_replaceAction);
- // }else{
- // this.setActionDisabled(this.replaceAction);
- // this.setActionDisabled(this.min_replaceAction);
- // }
- // }
- }
- },
- replaceAttachment: function (e, node) {
- var att = this.selectedAttachments[0].data;
- if (this.module.json.isOpenInOffice && this.module.json.officeControlName && (this.options.officeFiles.indexOf(att.extension) !== -1)) {
- var office = this.module.form.all[this.module.json.officeControlName];
- if (office) {
- if (this.min_closeOfficeAction) this.setActionEnabled(this.min_closeOfficeAction);
- if (this.closeOfficeAction) this.setActionEnabled(this.closeOfficeAction);
- this.openInOfficeControl(att, office);
- } else {
- if (this.selectedAttachments.length && this.selectedAttachments.length == 1) {
- if (this.module) this.module.replaceAttachment(e, node, this.selectedAttachments[0]);
- }
- }
- } else {
- if (this.selectedAttachments.length && this.selectedAttachments.length == 1) {
- if (this.module) this.module.replaceAttachment(e, node, this.selectedAttachments[0]);
- }
- }
- },
- isAttReplaceAvailable: function (att) {
- if (this.options.readonly) return false;
- if (this.options.toolbarGroupHidden.contains("edit")) return false;
- if (this.options.isReplaceOption === "n") return false;
- var user = layout.session.user.distinguishedName;
- var flag = true;
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (this.options.isReplaceOption === "o") {
- flag = att.data.person === layout.desktop.session.user.distinguishedName;
- }
- if (this.options.isReplaceOption === "a") {
- flag = att.data.activity === this.module.form.businessData.activity.id;
- }
- if (this.options.isReplaceOption === "ao") {
- flag = (att.data.person === layout.desktop.session.user.distinguishedName && att.data.activity === this.module.form.businessData.activity.id);
- }
- if (flag && !att.data.control.allowEdit && att.data.person !== user) {
- flag = false;
- }
- return flag;
- },
- //checkAttachmentOrderAction : function(){
- // if (this.options.readonly){
- // this.setAttachmentsAction("order", false );
- // return false;
- // }
- // if (this.attachments.length){
- // var user = layout.session.user.distinguishedName;
- // for (var i=0; i<this.attachments.length; i++){
- // var flag = true;
- //
- // var att = this.attachments[i];
- // if( !att.data.person && att.data.creatorUid )att.data.person = att.data.creatorUid;
- //
- // if ((!att.data.control.allowControl || !att.data.control.allowEdit) && att.data.person!==user){
- // flag = false;
- // }
- // if (flag){
- // this.setAttachmentAction(att, "order", true );
- // }else{
- // this.setAttachmentAction(att, "order", false );
- // }
- // }
- // }
- //},
- checkOrderAction: function () {
- //this.checkAttachmentOrderAction();
- if (this.options.readonly) {
- this.setActionDisabled(this.orderAction);
- this.setActionDisabled(this.min_orderAction);
- return false;
- }
- if (this.attachments.length && this.attachments.length > 1) {
- var flag = true;
- var user = layout.session.user.distinguishedName;
- for (var i = 0; i < this.attachments.length; i++) {
- var att = this.attachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if ((!att.data.control.allowControl && !att.data.control.allowEdit) && att.data.person !== user) { //|| !att.data.control.allowEdit
- flag = false;
- break;
- }
- }
- if (flag) {
- this.setActionEnabled(this.orderAction);
- this.setActionEnabled(this.min_orderAction);
- } else {
- this.setActionDisabled(this.orderAction);
- this.setActionDisabled(this.min_orderAction);
- }
- //this.setActionEnabled(this.min_deleteAction);
- } else {
- this.setActionDisabled(this.orderAction);
- this.setActionDisabled(this.min_orderAction);
- //this.setActionDisabled(this.min_deleteAction);
- }
- },
- isAttOrderAvailable: function (att) {
- if (this.options.readonly) return false;
- if (this.options.toolbarGroupHidden.contains("config")) return false;
- var user = layout.session.user.distinguishedName;
- var flag = true;
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if ((!att.data.control.allowControl || !att.data.control.allowEdit) && att.data.person !== user) {
- flag = false;
- }
- return flag;
- },
- createTopNode: function () {
- if (this.options.title) {
- if (!this.titleNode) this.titleNode = new Element("div", { "styles": this.css.titleNode, "text": this.options.title }).inject(this.node);
- }
- if (!this.topNode) {
- this.topNode = new Element("div", { "styles": this.css.topNode }).inject(this.node);
- } else {
- this.topNode.empty();
- this.editActionBoxNode = null;
- this.editActionsGroupNode = null;
- this.topNode.setStyle("display", "");
- if (this.isHiddenTop) {
- //this.container.setStyle("height", this.container.getSize().y + 45 );
- //this.node.setStyle("height", this.node.getSize().y + 45 );
- if (this.oldContentScrollNodeHeight && this.contentScrollNode) {
- this.contentScrollNode.setStyle("min-height", this.oldContentScrollNodeHeight);
- this.oldContentScrollNodeHeight = null;
- }
- this.isHiddenTop = false;
- }
- }
- var hiddenGroup = this.options.toolbarGroupHidden;
- if (hiddenGroup.contains("edit") && hiddenGroup.contains("read") && hiddenGroup.contains("list") &&
- hiddenGroup.contains("view") && hiddenGroup.contains("config") &&
- !(this.module.json.isOpenInOffice && this.module.json.officeControlName)
- ) {
- if (this.contentScrollNode) {
- this.oldContentScrollNodeHeight = this.contentScrollNode.getStyle("min-height");
- this.contentScrollNode.setStyle("min-height", this.node.getStyle("min-height"));
- this.topNode.setStyle("display", "none");
- }
- this.isHiddenTop = true;
- }
- if (!hiddenGroup.contains("edit")) this.createEditGroupActions();
- if (!hiddenGroup.contains("read")) this.createReadGroupActions();
- if (!hiddenGroup.contains("list")) this.createListGroupActions();
- if (this.module.json.isOpenInOffice && this.module.json.officeControlName) this.createOfficeGroupActions();
- if (!hiddenGroup.contains("config")) this.createConfigGroupActions();
- if (!hiddenGroup.contains("view")) this.createViewGroupActions();
- this.checkActions();
- },
- checkActions: function () {
- // if (this.options.readonly){
- // this.setReadonly();
- // }else{
- this.checkUploadAction();
- this.checkDeleteAction();
- this.checkReplaceAction();
- //this.checkOfficeAction();
- this.checkDownloadAction();
- this.checkSizeAction();
- this.checkConfigAction();
- this.checkOrderAction();
- this.checkListStyleAction();
- // }
- },
- checkAttachmentConfigAction: function () {
- if (this.options.readonly) {
- this.setAttachmentsAction("config", false);
- return false;
- }
- if (this.attachments.length) {
- var user = layout.session.user.distinguishedName;
- for (var i = 0; i < this.attachments.length; i++) {
- var flag = true;
- var att = this.attachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if ((!att.data.control.allowControl) && att.data.person !== user) { // || !att.data.control.allowEdit
- flag = false;
- }
- if (flag) {
- this.setAttachmentAction(att, "config", true);
- } else {
- this.setAttachmentAction(att, "config", false);
- }
- }
- }
- },
- checkConfigAction: function () {
- this.checkAttachmentConfigAction();
- if (this.options.readonly) {
- this.setActionDisabled(this.configAction);
- if (this.checkTextAction) this.setActionDisabled(this.checkTextAction);
- return false;
- }
- if (this.selectedAttachments.length) {
- var flag = true;
- var user = layout.session.user.distinguishedName;
- for (var i = 0; i < this.selectedAttachments.length; i++) {
- var att = this.selectedAttachments[i];
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if ((!att.data.control.allowControl) && att.data.person !== user) { //|| !att.data.control.allowEdit
- flag = false;
- break;
- }
- }
- if (flag) {
- this.setActionEnabled(this.configAction);
- } else {
- this.setActionDisabled(this.configAction);
- }
- //this.setActionEnabled(this.min_deleteAction);
- } else {
- this.setActionDisabled(this.configAction);
- //this.setActionDisabled(this.min_deleteAction);
- }
- if (this.checkTextAction) {
- this.setActionDisabled(this.checkTextAction);
- if (this.selectedAttachments.length && this.selectedAttachments.length === 1) {
- var att = this.selectedAttachments[0];
- if (this.options.images.indexOf(att.data.extension.toLowerCase()) !== -1) {
- this.setActionEnabled(this.checkTextAction);
- }
- }
- }
- },
- isAttConfigAvailable: function (att) {
- if (this.options.readonly) return false;
- if (this.options.toolbarGroupHidden.contains("config")) return false;
- var user = layout.session.user.distinguishedName;
- var flag = true;
- if (!att.data.person && att.data.creatorUid) att.data.person = att.data.creatorUid;
- if (!att.data.control.allowControl && att.data.person !== user) {
- flag = false;
- }
- return flag;
- },
- createEditGroupActions: function () {
- if (!this.editActionBoxNode) this.editActionBoxNode = new Element("div", { "styles": this.css.actionsBoxNode }).inject(this.topNode);
- if (!this.editActionsGroupNode) this.editActionsGroupNode = new Element("div", { "styles": this.css.actionsGroupNode }).inject(this.editActionBoxNode);
- this.uploadAction = this.createAction(this.editActionsGroupNode, "upload", o2.LP.widget.upload, function (e, node) {
- this.uploadAttachment(e, node);
- }.bind(this));
- this.deleteAction = this.createAction(this.editActionsGroupNode, "delete", o2.LP.widget["delete"], function (e, node) {
- this.deleteAttachment(e, node);
- }.bind(this));
- if (!this.options.isReplaceHidden) {
- this.replaceAction = this.createAction(this.editActionsGroupNode, "replace", o2.LP.widget.replace, function (e, node) {
- this.replaceAttachment(e, node);
- }.bind(this));
- }
- // this.officeAction = this.createAction(this.editActionsGroupNode, "office", o2.LP.widget.office, function(e, node){
- // this.openInOfficeControl(e, node);
- // }.bind(this));
- if (!this.options.toolbarGroupHidden.contains("read")) this.editActionSeparateNode = this.createSeparate(this.editActionsGroupNode);
- },
- createConfigGroupActions: function () {
- this.configActionBoxNode = new Element("div", { "styles": this.css.actionsBoxNode }).inject(this.topNode);
- this.configActionsGroupNode = new Element("div", { "styles": this.css.actionsGroupNode }).inject(this.configActionBoxNode);
- this.configAction = this.createAction(this.configActionsGroupNode, "config", MWF.LP.widget.configAttachment, function (e, node) {
- this.configAttachment(e, node);
- }.bind(this));
- if (this.options.checkTextEnable) {
- this.checkTextAction = this.createAction(this.configActionsGroupNode, "check", MWF.LP.widget.checkOcrText, function (e, node) {
- this.checkImageTex(e, node);
- }.bind(this));
- }
- this.createSeparate(this.configActionsGroupNode);
- this.orderAction = this.createAction(this.configActionsGroupNode, "order", MWF.LP.widget.order, function (e, node) {
- this.orderAttachment(e, node);
- }.bind(this));
- if (this.configAction) this.setActionDisabled(this.configAction);
- if (this.checkTextAction) this.setActionDisabled(this.checkTextAction);
- },
- createOfficeGroupActions: function () {
- this.officeActionBoxNode = new Element("div", { "styles": this.css.actionsBoxNode }).inject(this.topNode);
- this.officeActionsGroupNode = new Element("div", { "styles": this.css.actionsGroupNode }).inject(this.officeActionBoxNode);
- this.closeOfficeAction = this.createAction(this.officeActionsGroupNode, "closeOffice", MWF.LP.widget.closeOffice, function (e, node) {
- this.closeAttachmentOffice(e, node);
- }.bind(this));
- if (this.closeOfficeAction) this.setActionDisabled(this.closeOfficeAction);
- },
- loadMinActions: function () {
- var hiddenGroup = this.options.toolbarGroupHidden;
- if (!hiddenGroup.contains("edit")) {
- this.min_uploadAction = this.createAction(this.minActionAreaNode, "upload", MWF.LP.widget.upload, function (e, node) {
- this.uploadAttachment(e, node);
- }.bind(this));
- this.min_deleteAction = this.createAction(this.minActionAreaNode, "delete", MWF.LP.widget["delete"], function (e, node) {
- this.deleteAttachment(e, node);
- }.bind(this));
- if (!this.options.isReplaceHidden) {
- this.min_replaceAction = this.createAction(this.minActionAreaNode, "replace", MWF.LP.widget.replace, function (e, node) {
- this.replaceAttachment(e, node);
- }.bind(this));
- }
- }
- if (!hiddenGroup.contains("read")) {
- this.min_downloadAction = this.createAction(this.minActionAreaNode, "download", MWF.LP.widget.download
- , function (e, node) {
- this.downloadAttachment(e, node);
- }.bind(this));
- }
- if (!hiddenGroup.contains("config")) {
- this.min_orderAction = this.createAction(this.minActionAreaNode, "order", MWF.LP.widget.order, function (e, node) {
- this.orderAttachment(e, node);
- }.bind(this));
- }
- if (this.module.json.isOpenInOffice && this.module.json.officeControlName) {
- this.min_closeOfficeAction = this.createAction(this.minActionAreaNode, "closeOffice", MWF.LP.widget.closeOffice, function (e, node) {
- this.closeAttachmentOffice(e, node);
- }.bind(this));
- if (this.min_closeOfficeAction) this.setActionDisabled(this.closeOfficeAction);
- }
- if (!hiddenGroup.contains("edit") || !hiddenGroup.contains("read")) {
- this.createSeparate(this.minActionAreaNode);
- }
- //this.createSeparate(this.configActionsGroupNode);
- if (this.options.isSizeChange) {
- //this.createSeparate(this.minActionAreaNode);
- if (!hiddenGroup.contains("view")) {
- this.sizeAction = this.createAction(this.minActionAreaNode, "max", MWF.LP.widget.min, function () {
- this.changeControllerSize();
- }.bind(this));
- }
- }
- },
- closeAttachmentOffice: function () {
- var office = this.module.form.all[this.module.json.officeControlName];
- if (office) {
- office.openFile();
- if (this.min_closeOfficeAction) this.setActionDisabled(this.min_closeOfficeAction);
- if (this.closeOfficeAction) this.setActionDisabled(this.closeOfficeAction);
- }
- },
- configAttachment: function () {
- //this.fireEvent("delete", [attachment.data]);
- var lp = MWF.xApplication.process.Xform.LP;
- var css = this.module.form.css;
- var node = new Element("div", { "styles": css.attachmentPermissionNode }).inject(this.node);
- var attNames = new Element("div", { "styles": css.attachmentPermissionNamesNode }).inject(node);
- var attNamesTitle = new Element("div", { "styles": css.attachmentPermissionNamesTitleNode, "text": lp.attachmentPermissionInfo }).inject(attNames);
- var attNamesArea = new Element("div", { "styles": css.attachmentPermissionNamesAreaNode }).inject(attNames);
- if (this.selectedAttachments.length) {
- this.selectedAttachments.each(function (att) {
- var attNode = new Element("div", { "styles": css.attachmentPermissionAttNode, "text": att.data.name }).inject(attNamesArea);
- }.bind(this));
- }
- var editArea = new Element("div", { "styles": css.attachmentPermissionEditAreaNode }).inject(node);
- var title = new Element("div", { "styles": css.attachmentPermissionTitleNode, "text": lp.attachmentRead }).inject(editArea);
- var readInput = new Element("div", { "styles": css.attachmentPermissionInputNode }).inject(editArea);
- title = new Element("div", { "styles": css.attachmentPermissionTitleNode, "text": lp.attachmentEdit }).inject(editArea);
- var editInput = new Element("div", { "styles": css.attachmentPermissionInputNode }).inject(editArea);
- title = new Element("div", { "styles": css.attachmentPermissionTitleNode, "text": lp.attachmentController }).inject(editArea);
- var controllerInput = new Element("div", { "styles": css.attachmentPermissionInputNode }).inject(editArea);
- var dlg = o2.DL.open(Object.merge({
- "title": lp.attachmentPermission,
- "style": this.module.form.json.dialogStyle || "user",
- "isResize": false,
- "content": node,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function () {
- this.setAttachmentConfig(readInput, editInput, controllerInput);
- dlg.close();
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { dlg.close(); }
- }
- ]
- }, (this.module.form.json.dialogOptions||{})));
- if (this.selectedAttachments.length === 1) {
- var data = this.selectedAttachments[0].data;
- var readUnitList = (data.readUnitList) || [];
- var readIdentityList = (data.readIdentityList) || [];
- var editUnitList = (data.editUnitList) || [];
- var editIdentityList = (data.editIdentityList) || [];
- var controllerUnitList = (data.controllerUnitList) || [];
- var controllerIdentityList = (data.controllerIdentityList) || [];
- readInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
- "types": ["unit", "identity"],
- "values": readUnitList.concat(readIdentityList).trim()
- }));
- editInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
- "types": ["unit", "identity"],
- "values": editUnitList.concat(editIdentityList).trim()
- }));
- controllerInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
- "types": ["unit", "identity"],
- "values": controllerUnitList.concat(controllerIdentityList).trim()
- }));
- } else {
- readInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
- "types": ["unit", "identity"]
- }));
- editInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
- "types": ["unit", "identity"]
- }));
- controllerInput.setSelectPerson(this.module.form.app.content, Object.merge(Object.clone(this.module.form.json.selectorStyle || {}), {
- "types": ["unit", "identity"]
- }));
- }
- },
- setAttachmentConfig: function (readInput, editInput, controllerInput) {
- if (this.selectedAttachments.length) {
- var readList = readInput.retrieve("data-value");
- var editList = editInput.retrieve("data-value");
- var controllerList = controllerInput.retrieve("data-value");
- var readUnitList = [];
- var readIdentityList = [];
- var editUnitList = [];
- var editIdentityList = [];
- var controllerUnitList = [];
- var controllerIdentityList = [];
- if (readList) {
- readList.each(function (v) {
- var vName = (typeOf(v) === "string") ? v : v.distinguishedName;
- var len = vName.length;
- var flag = vName.substring(len - 1, len);
- if (flag === "U") readUnitList.push(vName);
- if (flag === "I") readIdentityList.push(vName);
- });
- }
- if (editList) {
- editList.each(function (v) {
- var vName = (typeOf(v) === "string") ? v : v.distinguishedName;
- var len = vName.length;
- var flag = vName.substring(len - 1, len);
- if (flag === "U") editUnitList.push(vName);
- if (flag === "I") editIdentityList.push(vName);
- });
- }
- if (controllerList) {
- controllerList.each(function (v) {
- var vName = (typeOf(v) === "string") ? v : v.distinguishedName;
- var len = vName.length;
- var flag = vName.substring(len - 1, len);
- if (flag === "U") controllerUnitList.push(vName);
- if (flag === "I") controllerIdentityList.push(vName);
- });
- }
- var loadedCount = 0;
- this.selectedAttachments.each(function (att) {
- att.data.readUnitList = readUnitList;
- att.data.readIdentityList = readIdentityList;
- att.data.editUnitList = editUnitList;
- att.data.editIdentityList = editIdentityList;
- att.data.controllerUnitList = controllerUnitList;
- att.data.controllerIdentityList = controllerIdentityList;
- o2.Actions.get("x_processplatform_assemble_surface").configAttachment(att.data.id, this.module.form.businessData.work.id, att.data, function () {
- //刷新附件权限,以后要加一个刷新附件的功能
- o2.Actions.load("x_processplatform_assemble_surface").AttachmentAction.getWithWorkOrWorkCompleted(att.data.id, this.module.form.businessData.work.id, function (json) {
- var attachment = this.getAttachmentById( att.data.id );
- if( attachment ){
- attachment.data = json.data;
- if( attachment.deleteAction && !this.isAttDeleteAvailable(attachment) ){
- attachment.deleteAction.setStyle("display","none");
- }
- if( attachment.configAction && !this.isAttConfigAvailable(attachment) ){
- attachment.configAction.setStyle("display","none");
- }
- }
- loadedCount++;
- if( loadedCount === this.selectedAttachments.length ){
- this.checkActions();
- }
- }.bind(this))
- }.bind(this));
- }.bind(this));
- }
- },
- checkImageTex: function () {
- if (this.selectedAttachments.length && this.selectedAttachments.length == 1) {
- var att = this.selectedAttachments[0];
- var lp = MWF.xApplication.process.Xform.LP;
- var css = this.module.form.css;
- var node = new Element("div", { "styles": css.attachmentOCRNode }).inject(this.node);
- var previewNode = new Element("div", { "styles": css.attachmentOCRImageAreaNode }).inject(node);
- var imgNode = new Element("img", { "styles": css.attachmentOCRImageNode }).inject(previewNode);
- o2.Actions.get("x_processplatform_assemble_surface").getAttachmentUrl(att.data.id, this.module.form.businessData.work.id, function (url) {
- imgNode.set("src", o2.filterUrl(url));
- });
- var areaNode = new Element("div", { "styles": css.attachmentOCRInputAreaNode }).inject(node);
- var inputNode = new Element("textarea", { "styles": css.attachmentOCRInputNode }).inject(areaNode);
- var dlg = o2.DL.open({
- "title": lp.attachmentOCRTitle,
- "style": this.module.form.json.dialogStyle || "user",
- "isResize": false,
- "content": node,
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function () {
- this.setAttachmentOCR(inputNode, att);
- dlg.close();
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { dlg.close(); }
- }
- ]
- });
- if (att.data.ocr) {
- inputNode.set("text", att.data.ocr.text || "");
- } else {
- o2.Actions.get("x_processplatform_assemble_surface").getAttachmentOCR(att.data.id, this.module.form.businessData.work.id, function (json) {
- att.data.ocr = json.data;
- inputNode.set("text", json.data.text || "");
- }.bind(this))
- }
- }
- },
- setAttachmentOCR: function (inputNode, att) {
- var data = inputNode.get("text");
- if (!att.data.ocr) att.data.ocr = {};
- att.data.ocr.text = data;
- o2.Actions.get("x_processplatform_assemble_surface").setAttachmentOCR(att.data.id, this.module.form.businessData.work.id, {
- "text": data
- }, function () {
- this.module.form.app.notice("success", lp.attachmentOCR_saved, this.node);
- }.bind(this));
- },
- checkMoveAction: function (item) {
- if (item) {
- var actionArea = item.getFirst().getNext();
- var actionup = actionArea.getFirst().show();
- var actiondown = actionArea.getLast().show();
- tmp = item.getPrevious();
- if (!tmp) actionup.hide();
- tmp = item.getNext();
- if (!tmp) actiondown.hide();
- }
- },
- orderAttachment: function () {
- if (this.attachments.length) {
- this.attachments = this.attachments.sort(function (a1, a2) {
- if (!a2.data.orderNumber) return 1;
- if (!a1.data.orderNumber) return -1;
- return a1.data.orderNumber - a2.data.orderNumber;
- }.bind(this));
- var lp = MWF.xApplication.process.Xform.LP;
- var css = this.module.form.css;
- var node = new Element("div", { "styles": css.attachmentOrderNode });
- var infoNode = new Element("div", { "styles": css.attachmentOrderInforNode, "text": lp.attachmentOrderInfo }).inject(node);
- var attrchmentsNode = new Element("div", { "styles": css.attachmentOrderAreaNode }).inject(node);
- var iconUrl = "../x_component_File/$Main/icon.json";
- var icons = null;
- o2.getJSON(iconUrl, function (json) {
- icons = json;
- }.bind(this), false, false);
- this.attachments.each(function (att, idx) {
- var iconName = icons[att.data.extension.toLowerCase()] || icons.unknow;
- var iconFolderUrl = "../x_component_File/$Main/default/file/" + iconName;
- var itemNode = new Element("div", { "styles": css.attachmentOrderItemNode }).inject(attrchmentsNode);
- itemNode.store("att", att);
- var icon = new Element("div", { "styles": css.attachmentOrderItemIconNode }).inject(itemNode);
- icon.setStyle("background-image", "url('" + iconFolderUrl + "')");
- var actionArea = new Element("div", { "styles": css.attachmentOrderItemActionNode }).inject(itemNode);
- var text = new Element("div", { "styles": css.attachmentOrderItemTextNode, "text": att.data.name }).inject(itemNode);
- var actionUp = new Element("div", { "styles": css.attachmentOrderItemActionUpNode, "text": lp.attachmentOrderUp }).inject(actionArea);
- var actionDown = new Element("div", { "styles": css.attachmentOrderItemActionDownNode, "text": lp.attachmentOrderDown }).inject(actionArea);
- if (idx == 0) actionUp.hide();
- if (idx == this.attachments.length - 1) actionDown.hide();
- actionUp.addEvent("click", function (e) {
- var itemNode = e.target.getParent().getParent();
- var upNode = itemNode.getPrevious();
- if (upNode) {
- itemNode.inject(upNode, "before");
- this.checkMoveAction(upNode);
- }
- this.checkMoveAction(itemNode);
- itemNode.highlight();
- //itemNode.setStyle("background-color", "#faf9f1");
- }.bind(this));
- actionDown.addEvent("click", function (e) {
- var itemNode = e.target.getParent().getParent();
- var downNode = itemNode.getNext();
- if (downNode) {
- itemNode.inject(downNode, "after");
- this.checkMoveAction(downNode);
- }
- this.checkMoveAction(itemNode);
- itemNode.highlight();
- // /itemNode.setStyle("background-color", "#faf9f1");
- }.bind(this));
- itemNode.addEvents({
- "mouseover": function (e) { this.setStyle("background-color", "#f1f6fa"); },
- "mouseout": function (e) { this.setStyle("background-color", "#ffffff"); }
- });
- //var droppables = attrchmentsNode.getChildren();
- new Drag(itemNode, {
- "handle": icon,
- "snap": 5,
- "stopPropagation": true,
- "preventDefault": true,
- onStart: function (el, e) {
- var itemNode = el;
- itemNode.setStyle("background-color", "#f1f6fa");
- var moveNode = itemNode.clone(true).setStyles(css.attachmentOrderItemNode).setStyles({
- "background-color": "#faf9f1",
- "opacity": 0.8,
- "border": "1px dotted #333333"
- }).inject(node);
- moveNode.position({
- "relativeTo": itemNode,
- "position": 'upperLeft',
- "edge": 'upperLeft'
- });
- moveNode.owner = itemNode;
- var move = new Drag.Move(moveNode, {
- "container": node,
- "droppables": attrchmentsNode.getChildren(),
- "onEnter": function (el, drop) {
- moveNode.flagNode = new Element("div", { "styles": css.attachmentOrderFlagNode }).inject(drop, "before");
- },
- "onLeave": function (el, drop) {
- if (moveNode.flagNode) moveNode.flagNode.destroy();
- },
- "onDrop": function (el, drop) {
- if (moveNode.flagNode) {
- moveNode.owner.inject(moveNode.flagNode, "after");
- moveNode.flagNode.destroy();
- moveNode.owner.highlight();
- this.checkMoveAction(moveNode.owner);
- this.checkMoveAction(drop);
- this.checkMoveAction(attrchmentsNode.getLast());
- moveNode.destroy()
- }
- }.bind(this)
- });
- move.start(e);
- }.bind(this),
- enter: function (el) {
- el.removeClass('dragging');
- }
- });
- //itemNode.dragMove
- }.bind(this));
- var dlg = o2.DL.open(Object.merge({
- "title": lp.attachmentOrderTitle,
- "style": this.module.form.json.dialogStyle || "user",
- "isResize": false,
- "content": node,
- "width": "auto",
- "height": "auto",
- "buttonList": [
- {
- "type": "ok",
- "text": MWF.LP.process.button.ok,
- "action": function () {
- this.sortAttachment(attrchmentsNode);
- dlg.close();
- }.bind(this)
- },
- {
- "type": "cancel",
- "text": MWF.LP.process.button.cancel,
- "action": function () { dlg.close(); }
- }
- ],
- "onPostLoad": function () {
- var dlg = this;
- dlg.node.setStyle("display", "block");
- var size = {};
- if (css.attachmentOrderNode) {
- if (parseFloat(css.attachmentOrderNode.width).toString() !== "NaN") {
- size.x = parseInt(css.attachmentOrderNode.width)
- }
- if (parseFloat(css.attachmentOrderNode.height).toString() !== "NaN") {
- size.y = parseInt(css.attachmentOrderNode.height)
- }
- }
- node.show();
- var nodeSize = node.getSize();
- dlg.content.setStyles({
- "width": size.x || nodeSize.x,
- "height": size.y || nodeSize.y
- });
- dlg.setContentSize();
- }
- }, (this.module.form.json.dialogOptions||{})));
- }
- },
- sortAttachment: function (node) {
- var nodes = node.getChildren();
- nodes.each(function (item, idx) {
- var att = item.retrieve("att", null);
- if (att) {
- att.data.orderNumber = idx;
- o2.Actions.load("x_processplatform_assemble_surface").AttachmentAction.changeOrderNumber(att.data.id, this.module.form.businessData.work.id, idx);
- }
- }.bind(this));
- this.attachments = this.attachments.sort(function (a1, a2) {
- if (!a2.data.orderNumber) return 1;
- if (!a1.data.orderNumber) return -1;
- return a1.data.orderNumber - a2.data.orderNumber;
- }.bind(this));
- this.reloadAttachments();
- this.fireEvent("order");
- }
- });
- /**
- * 当前登录人员的附件权限数据结构.
- * @typedef {Object} AttachmentControl
- * @property {Boolean} allowRead - 是否允许阅读.
- * @property {Boolean} allowEdit - 是否允许编辑.
- * @property {Boolean} allowControl - 是否允许设置.
- */
- /**
- * 附件数据结构.
- * @typedef {Object} AttachmentData
- * @property {String} id - 附件id.
- * @property {String} name - 附件标题.
- * @property {String} person - 上传人.
- * @property {Number} orderNumber - 排序号.
- * @property {String} activityName - 上传的节点.
- * @property {AttachmentControl} control - 当前登录人员对附件拥有的权限.
- * @property {Number} length - 附件大小.
- * @property {String} createTime - 创建时间.
- * @property {String} updateTime - 修改时间.
- * @property {String} extension - 附件扩展名.
- */
- /** @class process.Actionbar 附件组件。
- * @example
- * //可以在脚本中获取该组件
- * //方法1:
- * var attachment = this.form.get("name"); //获取组件
- * //方法2
- * var attachment = this.target; //在组件事件脚本中获取
- * @extends MWF.xApplication.process.Xform.$Module
- * @hideconstructor
- */
- MWF.xApplication.process.Xform.Attachment = MWF.APPAttachment = new Class(
- /** @lends MWF.xApplication.process.Xform.Attachment# */
- {
- Extends: MWF.APP$Module,
- options: {
- "moduleEvents": ["upload", "delete", "afterDelete", "load", "change","download","open"]
- },
- initialize: function (node, json, form, options) {
- this.node = $(node);
- this.node.store("module", this);
- this.json = json;
- this.form = form;
- this.field = true;
- },
- _loadUserInterface: function () {
- this.node.empty();
- if (this.form.businessData.work.startTime){
- this.loadAttachmentController();
- this.fireEvent("load");
- }
- },
- reload: function(){
- this.node.empty();
- if (this.form.businessData.work.startTime){
- this.loadAttachmentController();
- }
- },
- loadAttachmentController: function () {
- //MWF.require("MWF.widget.AttachmentController", function() {
- var options = {
- "style": this.json.style || "default",
- "title": "附件区域",
- "listStyle": this.json.listStyle || "icon",
- "size": this.json.size || "max",
- "resize": (this.json.resize === "y" || this.json.resize === "true"),
- "attachmentCount": this.json.attachmentCount || 0,
- "isUpload": (this.json.isUpload === "y" || this.json.isUpload === "true"),
- "isDelete": (this.json.isDelete === "y" || this.json.isDelete === "true"),
- "isReplace": (this.json.isReplace === "y" || this.json.isReplace === "true"),
- "isDownload": (this.json.isDownload === "y" || this.json.isDownload === "true"),
- "isSizeChange": (this.json.isSizeChange === "y" || this.json.isSizeChange === "true"),
- "readonly": (this.json.readonly === "y" || this.json.readonly === "true"),
- "availableListStyles": this.json.availableListStyles ? this.json.availableListStyles : ["list", "seq", "icon", "preview"],
- "isDeleteOption": this.json.isDelete,
- "isReplaceOption": this.json.isReplace,
- "toolbarGroupHidden": this.json.toolbarGroupHidden || [],
- "onOrder": function () {
- this.fireEvent("change");
- }.bind(this)
- };
- if (this.readonly) options.readonly = true;
- if (this.form.json.attachmentStyle) {
- options = Object.merge(options, this.form.json.attachmentStyle);
- }
- //this.attachmentController = new MWF.widget.ATTER(this.node, this, options);
- /**
- * 附件容器.
- * @member {MWF.xApplication.process.Xform.AttachmentController}
- * @example
- * var attachmentController = this.form.get("fieldName").AttachmentController; //获取附件容器
- * var attachmentList = attachmentController.attachments; //获取所有的附件
- * var attachmentData = attachment[0].data; //获取第一个附件的数据
- */
- this.attachmentController = new MWF.xApplication.process.Xform.AttachmentController(this.node, this, options);
- this.attachmentController.load();
- this.form.businessData.attachmentList.each(function (att) {
- //if (att.site===this.json.id || (this.json.isOpenInOffice && this.json.officeControlName===att.site)) this.attachmentController.addAttachment(att);
- if (att.site === (this.json.site || this.json.id)) this.attachmentController.addAttachment(att);
- }.bind(this));
- this.setAttachmentBusinessData();
- //}.bind(this));
- },
- setAttachmentBusinessData: function () {
- if (this.attachmentController) {
- if (this.attachmentController.attachments.length) {
- var values = this.attachmentController.attachments.map(function (d) {
- return d.data.name;
- });
- this._setBusinessData(values);
- } else {
- this._setBusinessData([]);
- }
- }
- },
- _loadEvents: function (editorConfig) {
- Object.each(this.json.events, function (e, key) {
- if (e.code) {
- if (this.options.moduleEvents.indexOf(key) !== -1) {
- this.addEvent(key, function (event) {
- return this.form.Macro.fire(e.code, this, event);
- }.bind(this));
- } else {
- this.node.addEvent(key, function (event) {
- return this.form.Macro.fire(e.code, this, event);
- }.bind(this));
- }
- }
- }.bind(this));
- },
- isEmpty : function(){
- var data = this.getData();
- if( typeOf(data) === "array" ){
- return data.length == 0
- }else{
- return !data;
- }
- },
- /**
- * 获取当前组件所有附件的标题.如果没有附件返回null
- * @example
- * var getAttachmentNames = this.form.get("name").getData();
- * @return {StringArray|Null} 附件标题.
- */
- getData: function () {
- return (this.attachmentController) ? this.attachmentController.getAttachmentNames() : null;
- },
- createUploadFileNode: function () {
- var accept = "*";
- if (!this.json.attachmentExtType || (this.json.attachmentExtType.indexOf("other") != -1 && !this.json.attachmentExtOtherType)) {
- } else {
- accepts = [];
- var otherType = this.json.attachmentExtOtherType;
- this.json.attachmentExtType.each(function (v) {
- switch (v) {
- case "word":
- accepts.push(".doc, .docx, .dot, .dotx");
- break;
- case "excel":
- accepts.push(".xls, .xlsx, .xlsm, .xlt, .xltx");
- break;
- case "ppt":
- accepts.push(".pptx, .ppt, .pot, .potx, .potm");
- break;
- case "txt":
- accepts.push(".txt");
- break;
- case "pic":
- accepts.push(".bmp, .gif, .psd, .jpeg, .jpg, .png");
- break;
- case "pdf":
- accepts.push(".pdf");
- break;
- case "zip":
- accepts.push(".zip, .rar");
- break;
- case "audio":
- accepts.push(".mp3, .wav, .wma, .wmv, .flac, .ape");
- break;
- case "video":
- accepts.push(".avi, .mkv, .mov, .ogg, .mp4, .mpeg");
- break;
- case "other":
- if (this.json.attachmentExtOtherType) accepts.push(this.json.attachmentExtOtherType);
- break;
- }
- }.bind(this));
- accept = accepts.join(", ");
- }
- var size = 0;
- if (this.json.attachmentSize) size = this.json.attachmentSize.toFloat();
- this.attachmentController.doUploadAttachment({ "site": (this.json.site || this.json.id) }, this.form.workAction.action, "uploadAttachment", { "id": this.form.businessData.work.id }, null, function (o) {
- if (o.id) {
- this.form.workAction.getAttachment(o.id, this.form.businessData.work.id, function (json) {
- if (json.data) {
- if (!json.data.control) json.data.control = {};
- this.attachmentController.addAttachment(json.data, o.messageId);
- }
- this.attachmentController.checkActions();
- this.setAttachmentBusinessData();
- this.fireEvent("upload", [json.data]);
- this.fireEvent("change");
- }.bind(this))
- }
- this.attachmentController.checkActions();
- }.bind(this), function (files) {
- if (files.length) {
- if ((files.length + this.attachmentController.attachments.length > this.attachmentController.options.attachmentCount) && this.attachmentController.options.attachmentCount > 0) {
- var content = MWF.xApplication.process.Xform.LP.uploadMore;
- content = content.replace("{n}", this.attachmentController.options.attachmentCount);
- this.form.notice(content, "error");
- return false;
- }
- }
- return true;
- }.bind(this), true, accept, size, function (o) { //错误的回调
- if (o.messageId && this.attachmentController.messageItemList) {
- var message = this.attachmentController.messageItemList[o.messageId];
- if( message && message.node )message.node.destroy();
- }
- }.bind(this));
- // this.uploadFileAreaNode = new Element("div");
- // var html = "<input name=\"file\" type=\"file\" multiple/>";
- // this.uploadFileAreaNode.set("html", html);
- //
- // this.fileUploadNode = this.uploadFileAreaNode.getFirst();
- // this.fileUploadNode.addEvent("change", function(){
- //
- // var files = this.fileUploadNode.files;
- // if (files.length){
- // if ((files.length+this.attachmentController.attachments.length > this.attachmentController.options.attachmentCount) && this.attachmentController.options.attachmentCount>0){
- // var content = MWF.xApplication.process.Xform.LP.uploadMore;
- // content = content.replace("{n}", this.attachmentController.options.attachmentCount);
- // this.form.notice(content, "error");
- // }else{
- // for (var i = 0; i < files.length; i++) {
- // var file = files.item(i);
- //
- // var formData = new FormData();
- // formData.append('site', this.json.id);
- // formData.append('file', file);
- //
- // //formData.append('folder', folderId);
- //
- // this.form.workAction.uploadAttachment(this.form.businessData.work.id ,function(o, text){
- // if (o.id){
- // this.form.workAction.getAttachment(o.id, this.form.businessData.work.id, function(json){
- // if (json.data) this.attachmentController.addAttachment(json.data);
- // this.attachmentController.checkActions();
- //
- // this.fireEvent("upload", [json.data]);
- // }.bind(this))
- // }
- // this.attachmentController.checkActions();
- // }.bind(this), null, formData, file);
- // }
- // }
- // }
- // }.bind(this));
- },
- uploadAttachment: function (e, node) {
- if (window.o2android && window.o2android.uploadAttachment) {
- window.o2android.uploadAttachment((this.json.site || this.json.id));
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.uploadAttachment) {
- window.webkit.messageHandlers.uploadAttachment.postMessage({ "site": (this.json.site || this.json.id) });
- } else {
- // if (!this.uploadFileAreaNode){
- this.createUploadFileNode();
- // }
- // this.fileUploadNode.click();
- }
- },
- deleteAttachments: function (e, node, attachments) {
- var names = [];
- attachments.each(function (attachment) {
- names.push(attachment.data.name);
- }.bind(this));
- // if ((window.o2 && window.o2.replaceAttachment) || (window.webkit && window.webkit.messageHandlers)){
- // if (window.confirm(MWF.xApplication.process.Xform.LP.deleteAttachment+"( "+names.join(", ")+" )")){
- // while (attachments.length){
- // attachment = attachments.shift();
- // this.deleteAttachment(attachment);
- // }
- // }
- // }else {
- // var tmpNode = new Element("div", {
- // "styles": {
- // "background-color": "#0000ff",
- // "border-style": "solid",
- // "border-color": "#fff",
- // "border-width": "1",
- // "box-shadow": "0px 0px 20px #999",
- // "z-index": "20000",
- // "overflow": "hidden",
- // "font-size": "14px",
- // "height": "160px",
- // "padding": "0px",
- // "width": "300px",
- // "position": "absolute",
- // "top": "50px",
- // "left": "20px",
- // "opacity": 1,
- // "border-radius": "5px"
- // }
- // }).inject(this.form.app.content);
- var _self = this;
- this.form.confirm("warn", e, MWF.xApplication.process.Xform.LP.deleteAttachmentTitle, MWF.xApplication.process.Xform.LP.deleteAttachment + "( " + names.join(", ") + " )", 300, 120, function () {
- while (attachments.length) {
- var attachment = attachments.shift();
- _self.deleteAttachment(attachment);
- }
- this.close();
- }, function () {
- this.close();
- }, null, null, this.form.json.confirmStyle);
- },
- deleteAttachment: function (attachment) {
- this.fireEvent("delete", [attachment.data]);
- var id = attachment.data.id;
- this.form.workAction.deleteAttachment(attachment.data.id, this.form.businessData.work.id, function (josn) {
- this.attachmentController.removeAttachment(attachment);
- this.attachmentController.checkActions();
- if (this.form.officeList) {
- this.form.officeList.each(function (office) {
- if (office.openedAttachment) {
- if (office.openedAttachment.id == id) {
- office.loadOfficeEdit();
- }
- }
- }.bind(this));
- }
- this.setAttachmentBusinessData();
- this.fireEvent("afterDelete", [attachment.data]);
- this.fireEvent("change");
- }.bind(this));
- },
- replaceAttachment: function (e, node, attachment) {
- if (window.o2android && window.o2android.replaceAttachment) {
- window.o2android.replaceAttachment(attachment.data.id, (this.json.site || this.json.id));
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.replaceAttachment) {
- window.webkit.messageHandlers.replaceAttachment.postMessage({ "id": attachment.data.id, "site": (this.json.site || this.json.id) });
- } else {
- var _self = this;
- this.form.confirm("warn", e, MWF.xApplication.process.Xform.LP.replaceAttachmentTitle, MWF.xApplication.process.Xform.LP.replaceAttachment + "( " + attachment.data.name + " )", 350, 120, function () {
- _self.replaceAttachmentFile(attachment);
- this.close();
- }, function () {
- this.close();
- }, null, null, this.form.json.confirmStyle);
- }
- },
- createReplaceFileNode: function (attachment) {
- var accept = "*";
- if (!this.json.attachmentExtType || this.json.attachmentExtType.indexOf("other") != -1 && !this.json.attachmentExtOtherType) {
- } else {
- accepts = [];
- var otherType = this.json.attachmentExtOtherType;
- this.json.attachmentExtType.each(function (v) {
- switch (v) {
- case "word":
- accepts.push(".doc, .docx, .dot, .dotx");
- break;
- case "excel":
- accepts.push(".xls, .xlsx, .xlsm, .xlt, .xltx");
- break;
- case "ppt":
- accepts.push(".pptx, .ppt, .pot, .potx, .potm");
- break;
- case "txt":
- accepts.push(".txt");
- break;
- case "pic":
- accepts.push(".bmp, .gif, .psd, .jpeg, .jpg");
- break;
- case "pdf":
- accepts.push(".pdf");
- break;
- case "zip":
- accepts.push(".zip, .rar");
- break;
- case "audio":
- accepts.push(".mp3, .wav, .wma, .wmv, .flac, .ape");
- break;
- case "video":
- accepts.push(".avi, .mkv, .mov, .ogg, .mp4, .mpeg");
- break;
- case "other":
- if (this.json.attachmentExtOtherType) accepts.push(this.json.attachmentExtOtherType);
- break;
- }
- });
- accept = accepts.join(", ");
- }
- var size = 0;
- if (this.json.attachmentSize) size = this.json.attachmentSize.toFloat();
- this.attachmentController.doUploadAttachment({ "site": (this.json.site || this.json.id) }, this.form.workAction.action, "replaceAttachment",
- { "id": attachment.data.id, "workid": this.form.businessData.work.id }, null, function (o) {
- this.form.workAction.getAttachment(attachment.data.id, this.form.businessData.work.id, function (json) {
- attachment.data = json.data;
- attachment.reload();
- if (o.messageId && this.attachmentController.messageItemList) {
- var message = this.attachmentController.messageItemList[o.messageId];
- if( message && message.node )message.node.destroy();
- }
- this.attachmentController.checkActions();
- }.bind(this))
- }.bind(this), null, true, accept, size, function (o) { //错误的回调
- if (o.messageId && this.attachmentController.messageItemList) {
- var message = this.attachmentController.messageItemList[o.messageId];
- if( message && message.node )message.node.destroy();
- }
- }.bind(this));
- // this.replaceFileAreaNode = new Element("div");
- // var html = "<input name=\"file\" type=\"file\" multiple/>";
- // this.replaceFileAreaNode.set("html", html);
- //
- // this.fileReplaceNode = this.replaceFileAreaNode.getFirst();
- // this.fileReplaceNode.addEvent("change", function(){
- //
- // var files = this.fileReplaceNode.files;
- // if (files.length){
- // for (var i = 0; i < files.length; i++) {
- // var file = files.item(i);
- //
- // var formData = new FormData();
- // formData.append('file', file);
- // // formData.append('site', this.json.id);
- //
- // this.form.workAction.replaceAttachment(attachment.data.id, this.form.businessData.work.id ,function(o, text){
- // this.form.workAction.getAttachment(attachment.data.id, this.form.businessData.work.id, function(json){
- // attachment.data = json.data;
- // attachment.reload();
- // this.attachmentController.checkActions();
- // }.bind(this))
- // }.bind(this), null, formData, file);
- // }
- // }
- // }.bind(this));
- },
- replaceAttachmentFile: function (attachment) {
- //if (!this.replaceFileAreaNode){
- this.createReplaceFileNode(attachment);
- // }
- // this.fileReplaceNode.click();
- },
- queryDownload : function( att ){
- if( this.json.events && this.json.events.queryDownload && this.json.events.queryDownload.code ){
- var flag = this.form.Macro.exec(this.json.events.queryDownload.code, att );
- if( flag === false ){
- return false
- }else{
- return true;
- }
- }else{
- return true;
- }
- },
- queryOpen : function( att ){
- if( this.json.events && this.json.events.queryOpen && this.json.events.queryOpen.code ){
- var flag = this.form.Macro.exec(this.json.events.queryOpen.code, att );
- if( flag === false ){
- return false
- }else{
- return true;
- }
- }else{
- return true;
- }
- },
- //小程序文件是否支持打开
- checkMiniProgramFile: function(ext) {
- var exts = ["doc", "docx", "xls", "xlsx", "ppt", "pptx", "pdf"];
- for(var i = 0; i < exts.length; i++){
- if(ext === exts[i]){
- return true;
- }
- }
- return false;
- },
- downloadAttachment: function (e, node, attachments) {
- if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
- attachments.each(function (att) {
- if( !this.queryDownload( att ) )return;
- if (window.o2android && window.o2android.downloadAttachment) {
- window.o2android.downloadAttachment(att.data.id);
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
- window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
- } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
- wx.miniProgram.navigateTo({
- url: '../file/download?attId=' + att.data.id + '&type=work&work=' + this.form.businessData.work.id
- });
- } else {
- if (layout.mobile) {
- //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
- this.form.workAction.getAttachmentUrl(att.data.id, this.form.businessData.work.id, function (url) {
- var xtoken = Cookie.read("x-token");
- window.location = o2.filterUrl(url + "?x-token=" + xtoken);
- });
- } else {
- this.form.workAction.getAttachmentStream(att.data.id, this.form.businessData.work.id);
- }
- }
- this.fireEvent("download",[att])
- }.bind(this));
- } else {
- attachments.each(function (att) {
- if( !this.queryDownload( att ) )return;
- if (window.o2android && window.o2android.downloadAttachment) {
- window.o2android.downloadAttachment(att.data.id);
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
- window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
- } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
- wx.miniProgram.navigateTo({
- url: '../file/download?attId=' + att.data.id + '&type=work&workCompleted=' + this.form.businessData.workCompleted.id
- });
- } else {
- if (layout.mobile) {
- //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
- this.form.workAction.getAttachmentWorkcompletedUrl(att.data.id, this.form.businessData.workCompleted.id, function (url) {
- var xtoken = Cookie.read("x-token");
- window.location = o2.filterUrl(url + "?x-token=" + xtoken);
- });
- } else {
- this.form.workAction.getWorkcompletedAttachmentStream(att.data.id, this.form.businessData.workCompleted.id);
- }
- }
- this.fireEvent("download",[att])
- }.bind(this));
- }
- },
- openAttachment: function (e, node, attachments) {
- if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
- attachments.each(function (att) {
- if( !this.queryOpen( att ) )return;
- if (window.o2android && window.o2android.downloadAttachment) {
- window.o2android.downloadAttachment(att.data.id);
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
- window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
- } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
- wx.miniProgram.navigateTo({
- url: '../file/download?attId=' + att.data.id + '&type=work&work=' + this.form.businessData.work.id
- });
- } else {
- if (layout.mobile) {
- //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
- this.form.workAction.getAttachmentUrl(att.data.id, this.form.businessData.work.id, function (url) {
- var xtoken = Cookie.read("x-token");
- window.location = o2.filterUrl(url + "?x-token=" + xtoken);
- });
- } else {
- this.form.workAction.getAttachmentData(att.data.id, this.form.businessData.work.id);
- }
- }
- this.fireEvent("open",[att])
- }.bind(this));
- } else {
- attachments.each(function (att) {
- if( !this.queryOpen( att ) )return;
- if (window.o2android && window.o2android.downloadAttachment) {
- window.o2android.downloadAttachment(att.data.id);
- } else if (window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.downloadAttachment) {
- window.webkit.messageHandlers.downloadAttachment.postMessage({ "id": att.data.id, "site": (this.json.site || this.json.id) });
- } else if (window.wx && window.__wxjs_environment === 'miniprogram' && this.checkMiniProgramFile(att.data.extension)) { //微信小程序
- wx.miniProgram.navigateTo({
- url: '../file/download?attId=' + att.data.id + '&type=work&workCompleted=' + this.form.businessData.workCompleted.id
- });
- } else {
- if (layout.mobile) {
- //移动端 企业微信 钉钉 用本地打开 防止弹出自带浏览器 无权限问题
- this.form.workAction.getAttachmentWorkcompletedUrl(att.data.id, ((this.form.businessData.workCompleted) ? this.form.businessData.workCompleted.id : this.form.businessData.work.id), function (url) {
- var xtoken = Cookie.read("x-token");
- window.location = o2.filterUrl(url + "?x-token=" + xtoken);
- });
- } else {
- this.form.workAction.getWorkcompletedAttachmentData(att.data.id, ((this.form.businessData.workCompleted) ? this.form.businessData.workCompleted.id : this.form.businessData.work.id));
- }
- }
- this.fireEvent("open",[att])
- }.bind(this));
- }
- //this.downloadAttachment(e, node, attachment);
- },
- getAttachmentUrl: function (attachment, callback) {
- if (this.form.businessData.work && !this.form.businessData.work.completedTime) {
- this.form.workAction.getAttachmentUrl(attachment.data.id, this.form.businessData.work.id, callback);
- } else {
- this.form.workAction.getAttachmentWorkcompletedUrl(attachment.data.id, this.form.businessData.workCompleted.id, callback);
- }
- },
- getTextData: function(){
- var data = [];
- this.attachmentController.attachments.each(function(att){
- var o = {
- "id": att.data.id,
- "person": att.data.person,
- "creatorUid": att.data.creatorUid,
- "name": att.data.name,
- "orderNumber": att.data.orderNumber,
- "length": att.data.length,
- "extension": att.data.extension,
- "lastUpdateTime": att.data.lastUpdateTime,
- "activityName": att.data.activityName
- }
- data.push(o);
- });
- return data;
- },
- /**
- * 为组件重新设置附件,该附件必须已经上传。
- * @param data{AttachmentData} .
- */
- setData: function(data){
- this.attachmentController.clear();
- data.each(function (att) {
- var attachment = this.form.businessData.attachmentList.find(function(a){
- return a.id==att.id;
- });
- var attData = attachment || att;
- this.attachmentController.addAttachment(attData);
- }.bind(this));
- this.setAttachmentBusinessData();
- },
- createErrorNode: function (text) {
- var node = new Element("div");
- var iconNode = new Element("div", {
- "styles": {
- "width": "20px",
- "height": "20px",
- "float": "left",
- "background": "url(" + "../x_component_process_Xform/$Form/default/icon/error.png) center center no-repeat"
- }
- }).inject(node);
- var textNode = new Element("div", {
- "styles": {
- "line-height": "20px",
- "margin-left": "20px",
- "color": "red",
- "word-break": "keep-all"
- },
- "text": text
- }).inject(node);
- return node;
- },
- notValidationMode: function (text) {
- if (!this.isNotValidationMode) {
- this.isNotValidationMode = true;
- this.node.store("borderStyle", this.node.getStyles("border-left", "border-right", "border-top", "border-bottom"));
- this.node.setStyle("border", "1px solid red");
- this.errNode = this.createErrorNode(text).inject(this.node, "after");
- this.showNotValidationMode(this.node);
- }
- },
- showNotValidationMode: function (node) {
- var p = node.getParent("div");
- if (p) {
- if (p.get("MWFtype") == "tab$Content") {
- if (p.getParent("div").getStyle("display") == "none") {
- var contentAreaNode = p.getParent("div").getParent("div");
- var tabAreaNode = contentAreaNode.getPrevious("div");
- var idx = contentAreaNode.getChildren().indexOf(p.getParent("div"));
- var tabNode = tabAreaNode.getLast().getFirst().getChildren()[idx];
- tabNode.click();
- p = tabAreaNode.getParent("div");
- }
- }
- this.showNotValidationMode(p);
- }
- },
- validationMode: function () {
- if (this.isNotValidationMode) {
- this.isNotValidationMode = false;
- this.node.setStyles(this.node.retrieve("borderStyle"));
- if (this.errNode) {
- this.errNode.destroy();
- this.errNode = null;
- }
- }
- },
- validationConfigItem: function (routeName, data) {
- var flag = (data.status == "all") ? true : (routeName == data.decision);
- if (flag) {
- var n = this.getData();
- var v = (data.valueType == "value") ? n : n.length;
- switch (data.operateor) {
- case "isnull":
- if (!v) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- case "notnull":
- if (v) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- case "gt":
- if (v > data.value) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- case "lt":
- if (v < data.value) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- case "equal":
- if (v == data.value) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- case "neq":
- if (v != data.value) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- case "contain":
- if (v.indexOf(data.value) != -1) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- case "notcontain":
- if (v.indexOf(data.value) == -1) {
- this.notValidationMode(data.prompt);
- return false;
- }
- break;
- }
- }
- return true;
- },
- validationConfig: function (routeName, opinion) {
- if (this.json.validationConfig) {
- if (this.json.validationConfig.length) {
- for (var i = 0; i < this.json.validationConfig.length; i++) {
- var data = this.json.validationConfig[i];
- if (!this.validationConfigItem(routeName, data)) return false;
- }
- }
- return true;
- }
- return true;
- },
- /**
- * 根据组件的校验设置进行校验。
- * @param {String} routeName - 可选,路由名称.
- * @example
- * if( !this.form.get('fieldName').validation() ){
- * return false;
- * }
- * @return {Boolean} 是否通过校验
- */
- validation: function (routeName, opinion) {
- if (!this.validationConfig(routeName, opinion)) return false;
- if (!this.json.validation) return true;
- if (!this.json.validation.code) return true;
- this.currentRouteName = routeName;
- var flag = this.form.Macro.exec(this.json.validation.code, this);
- this.currentRouteName = "";
- if (!flag) flag = MWF.xApplication.process.Xform.LP.notValidation;
- if (flag.toString() != "true") {
- this.notValidationMode(flag);
- return false;
- }
- return true;
- }
- });
- MWF.xApplication.process.Xform.AttachmentDg = MWF.APPAttachmentDg = new Class({
- Extends: MWF.APPAttachment,
- loadAttachmentController: function () {
- //MWF.require("MWF.widget.AttachmentController", function() {
- var options = {
- "style": this.json.style || "default",
- "title": "附件区域DG",
- "listStyle": this.json.listStyle || "icon",
- "size": this.json.size || "max",
- "resize": (this.json.resize === "y" || this.json.resize === "true"),
- "attachmentCount": this.json.attachmentCount || 0,
- "isUpload": (this.json.isUpload === "y" || this.json.isUpload === "true"),
- "isDelete": (this.json.isDelete === "y" || this.json.isDelete === "true"),
- "isReplace": (this.json.isReplace === "y" || this.json.isReplace === "true"),
- "isDownload": (this.json.isDownload === "y" || this.json.isDownload === "true"),
- "isSizeChange": (this.json.isSizeChange === "y" || this.json.isSizeChange === "true"),
- "readonly": (this.json.readonly === "y" || this.json.readonly === "true"),
- "availableListStyles": this.json.availableListStyles ? this.json.availableListStyles : ["list", "seq", "icon", "preview"],
- "isDeleteOption": this.json.isDelete,
- "isReplaceOption": this.json.isReplace,
- "toolbarGroupHidden": this.json.toolbarGroupHidden || [],
- "onOrder": function () {
- this.fireEvent("change");
- }.bind(this)
- };
- if (this.readonly) options.readonly = true;
- if (this.form.json.attachmentStyle) {
- options = Object.merge(options, this.form.json.attachmentStyle);
- }
- this.attachmentController = new MWF.xApplication.process.Xform.AttachmentController(this.node, this, options);
- this.attachmentController.load();
- // var d = this._getBusinessData();
- // if (d) d.each(function (att) {
- // this.attachmentController.addAttachment(att);
- // }.bind(this));
- this.form.businessData.attachmentList.each(function (att) {
- if (att.site === (this.json.site || this.json.id)) this.attachmentController.addAttachment(att);
- }.bind(this));
- this.setAttachmentBusinessData();
- },
- setAttachmentBusinessData: function(){
- if (this.attachmentController) {
- if (this.attachmentController.attachments.length) {
- var values = this.attachmentController.attachments.map(function (d) {
- return {
- "control": d.data.control,
- "name": d.data.name,
- "id": d.data.id,
- "person": d.data.person,
- "creatorUid": d.data.creatorUid,
- "orderNumber": d.data.orderNumber,
- "length": d.data.length,
- "extension": d.data.extension,
- "lastUpdateTime": d.data.lastUpdateTime,
- "activityName": d.data.activityName
- };
- });
- this._setBusinessData(values);
- } else {
- this._setBusinessData([]);
- }
- }
- }
- });
|