mirror of
https://github.com/ONLYOFFICE/sdkjs-forms.git
synced 2026-03-31 10:23:35 +08:00
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a24199ebb | |||
| a8dd2d819c | |||
| a0d4242dd5 | |||
| 314bfc08f7 | |||
| 7fa69ca7a1 | |||
| 164ef8153e | |||
| a9365fd7e3 | |||
| 48c2ccfd82 | |||
| fccc792757 | |||
| 67703b04b3 | |||
| d40525a089 | |||
| bce21816b5 | |||
| 05009b5824 | |||
| 7cf99b3da2 | |||
| 56c51de169 |
2
api.js
2
api.js
@ -30,6 +30,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
var AscOForm = {};
|
||||
window["AscOForm"] = window.AscOForm = AscOForm;
|
||||
|
||||
(function(window, document) {
|
||||
window['Asc']['Addons'] = window['Asc']['Addons'] || {};
|
||||
|
||||
@ -240,7 +240,7 @@
|
||||
if (!oFormPr)
|
||||
oFormPr = {};
|
||||
|
||||
var oPr = new CSdtComboBoxPr();
|
||||
var oPr = new AscCommon.CSdtComboBoxPr();
|
||||
oPr.AddItem(AscCommon.translateManager.getValue("Choose an item"), "");
|
||||
|
||||
var oCC = CreateCommonForm(oFormPr);
|
||||
|
||||
@ -5,7 +5,13 @@
|
||||
"apiPlugins.js"
|
||||
],
|
||||
"common": [
|
||||
"apiBuilder.js"
|
||||
"apiBuilder.js",
|
||||
"oform/Main.js",
|
||||
"oform/Field.js",
|
||||
"oform/User.js",
|
||||
"oform/UserMaster.js",
|
||||
"oform/changes/UserChanges.js",
|
||||
"oform/changes/UserMasterChanges.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
416
oform/Field.js
Normal file
416
oform/Field.js
Normal file
@ -0,0 +1,416 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window, undefined) {
|
||||
|
||||
const CBaseFormatObject = AscFormat.CBaseFormatObject;
|
||||
const InitClass = AscFormat.InitClass;
|
||||
const CChangesString = AscDFH.CChangesDrawingsString;
|
||||
const CChangesObject = AscDFH.CChangesDrawingsObject;
|
||||
const CChangesContent = AscDFH.CChangesDrawingsContent;
|
||||
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormFieldMaster_FieldId] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormFieldMaster_User] = CChangesContent;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormFieldMaster_Field] = CChangesObject;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormFieldMaster_SignRequest] = CChangesObject;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormField_Content] = CChangesObject;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormField_EncryptedData] = CChangesContent;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormField_FieldMaster] = CChangesObject;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_SignRequest_User] = CChangesContent;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_EncryptedData_Method] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_EncryptedData_Value] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_EncryptedData_KeyInfo] = CChangesObject;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_KeyInfo_User] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_KeyInfo_Value] = CChangesObject;
|
||||
|
||||
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FormFieldMaster_FieldId] = function(oClass, value) {oClass.FieldId = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FormFieldMaster_Field] = function(oClass, value) {oClass.Field = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FormFieldMaster_SignRequest] = function(oClass, value) {oClass.SignRequest = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FormField_Content] = function(oClass, value) {oClass.FieldContent = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FormField_FieldMaster] = function(oClass, value) {oClass.FieldMaster = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_EncryptedData_Method] = function(oClass, value) {oClass.EncryptedMethod = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_EncryptedData_Value] = function(oClass, value) {oClass.EncryptedValue = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_EncryptedData_KeyInfo] = function(oClass, value) {oClass.KeyInfo = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_KeyInfo_User] = function(oClass, value) {oClass.FieldId = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_KeyInfo_Value] = function(oClass, value) {oClass.FieldId = value;};
|
||||
|
||||
|
||||
AscDFH.drawingContentChanges[AscDFH.historyitem_FormFieldMaster_User] = function (oClass) {return oClass.Users;};
|
||||
AscDFH.drawingContentChanges[AscDFH.historyitem_SignRequest_User] = function (oClass) {return oClass.Users;};
|
||||
AscDFH.drawingContentChanges[AscDFH.historyitem_FormField_EncryptedData] = function (oClass) {return oClass.EndcriptedData;};
|
||||
|
||||
|
||||
function CFieldMaster() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.FieldId = null;
|
||||
this.Users = [];
|
||||
this.Field = null;
|
||||
this.SignRequest = null;
|
||||
}
|
||||
InitClass(CFieldMaster, CBaseFormatObject, AscDFH.historyitem_type_FormFieldMaster);
|
||||
CFieldMaster.prototype.setFieldId = function(sFieldId) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_FormFieldMaster_FieldId, this.FieldId, sFieldId));
|
||||
this.FieldId = sFieldId;
|
||||
};
|
||||
CFieldMaster.prototype.addUser = function(oUser) {
|
||||
AscCommon.History.Add(new CChangesContent(this, AscDFH.historyitem_FormFieldMaster_User, this.Users.length, [oUser], true));
|
||||
this.Users.push(oUser);
|
||||
};
|
||||
CFieldMaster.prototype.setField = function(oField) {
|
||||
AscCommon.History.Add(new CChangesObject(this, AscDFH.historyitem_FormFieldMaster_Field, this.Field, oField));
|
||||
this.Field = oField;
|
||||
if(oField) {
|
||||
oField.setFieldMaster(this);
|
||||
}
|
||||
};
|
||||
CFieldMaster.prototype.setSignRequest = function(oSignRequest) {
|
||||
AscCommon.History.Add(new CChangesObject(this, AscDFH.historyitem_FormFieldMaster_SignRequest, this.SignRequest, oSignRequest));
|
||||
this.SignRequest = oSignRequest;
|
||||
};
|
||||
CFieldMaster.prototype.readAttrXml = function(name, reader) {
|
||||
switch (name) {
|
||||
case "id": {
|
||||
this.setFieldId(reader.GetValue());
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CFieldMaster.prototype.readChildXml = function (name, reader) {
|
||||
let oThis = this;
|
||||
switch (name) {
|
||||
case "Users": {
|
||||
let oUsersNode = new CT_XmlNode(function (reader, name){
|
||||
if(name === "User") {
|
||||
let oUserNode = new CT_XmlNode();
|
||||
oUserNode.fromXml(reader);
|
||||
let sId = oUserNode.attributes["id"];
|
||||
let oRel = reader.rels.getRelationshipById(sId);
|
||||
reader.context.addFieldMasterRelation(oThis, oRel.targetFullName)
|
||||
}
|
||||
return true;
|
||||
});
|
||||
oUsersNode.fromXml(reader);
|
||||
break;
|
||||
}
|
||||
case "SignRequest": {
|
||||
let oSignRequest = new CSignRequest();
|
||||
oSignRequest.fromXml(reader);
|
||||
this.setSignRequest(oSignRequest);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CFieldMaster.prototype.toXml = function (writer) {
|
||||
writer.WriteXmlString(AscCommonWord.g_sXmlHeader);
|
||||
writer.WriteXmlNodeStart("FieldMaster");
|
||||
writer.WriteXmlAttributeString("xmlns:r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||||
writer.WriteXmlNullableAttributeString("id", this.FieldId);
|
||||
writer.WriteXmlAttributesEnd();
|
||||
|
||||
writer.WriteXmlNodeStart("Users");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
let oContext = writer.context;
|
||||
let oUserMasterPartMap = oContext.userMasterPartMap;
|
||||
let oUsersIdMap = {};
|
||||
for(let nUser = 0; nUser < this.Users.length; ++nUser) {
|
||||
let oUser = this.Users[nUser];
|
||||
let oPart = oUserMasterPartMap[oUser.Id];
|
||||
if(!oPart) {
|
||||
oPart = writer.context.part.addPart(AscCommon.openXml.Types.userMaster);
|
||||
let oUserMemory = new AscCommon.CMemory();
|
||||
oUserMemory.context = writer.context;
|
||||
oPart.part.setDataXml(oUser, oUserMemory);
|
||||
oUserMasterPartMap[oUser.Id] = oPart;
|
||||
}
|
||||
let oNode = new CT_XmlNode();
|
||||
let sRId = oContext.part.addRelationship(AscCommon.openXml.Types.userMaster.relationType, oPart.uri);
|
||||
oNode.attributes["r:id"] = sRId
|
||||
oUsersIdMap[oUser.Id] = sRId;
|
||||
oNode.toXml(writer, "User");
|
||||
|
||||
}
|
||||
writer.WriteXmlNodeEnd("Users");
|
||||
if(this.SignRequest) {
|
||||
this.SignRequest.toXml(writer, oUsersIdMap);
|
||||
}
|
||||
writer.WriteXmlNodeEnd("FieldMaster");
|
||||
if(writer.context.fileType === Asc.c_oAscFileType.OFORM) {
|
||||
if(this.Field) {
|
||||
let oPart = writer.context.docPart.part.addPartWithoutRels(AscCommon.openXml.Types.field);
|
||||
let oMemory = new AscCommon.CMemory();
|
||||
oMemory.context = writer.context;
|
||||
oPart.setDataXml(this.Field, oMemory);
|
||||
oMemory.Seek(0);
|
||||
oPart.addRelationship(AscCommon.openXml.Types.fieldMaster.relationType, oContext.part.uri)
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function CSignRequest() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.Users = [];
|
||||
}
|
||||
InitClass(CSignRequest, CBaseFormatObject, AscDFH.historyitem_type_SignRequest);
|
||||
CSignRequest.prototype.addUser = function(oUser) {
|
||||
AscCommon.History.Add(new CChangesContent(this, AscDFH.historyitem_SignRequest_User, this.Users.length, [oUser], true));
|
||||
this.Users.push(oUser);
|
||||
};
|
||||
CSignRequest.prototype.readChildXml = function (name, reader) {
|
||||
CFieldMaster.prototype.readChildXml.call(this, name, reader);
|
||||
};
|
||||
CSignRequest.prototype.toXml = function (writer, oUsersIdMap) {
|
||||
writer.WriteXmlNodeStart("SignRequest");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
|
||||
writer.WriteXmlNodeStart("Users");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
for(let nUser = 0; nUser < this.Users.length; ++nUser) {
|
||||
let oUser = this.Users[nUser];
|
||||
let oNode = new CT_XmlNode();
|
||||
let sRId = oUsersIdMap[oUser.Id];
|
||||
if(sRId) {
|
||||
oNode.attributes["r:id"] = sRId
|
||||
oUsersIdMap[oUser.Id] = sRId;
|
||||
oNode.toXml(writer, "User");
|
||||
}
|
||||
|
||||
}
|
||||
writer.WriteXmlNodeEnd("Users");
|
||||
writer.WriteXmlNodeEnd("SignRequest");
|
||||
};
|
||||
|
||||
function CFieldContent() {
|
||||
CParagraphContentWithParagraphLikeContent.call(this);
|
||||
}
|
||||
InitClass(CFieldContent, CParagraphContentWithParagraphLikeContent, 0);
|
||||
CFieldContent.prototype.Add_ToContent = function(Pos, Item, UpdatePosition)
|
||||
{
|
||||
AscCommon.History.Add(new CChangesFormFieldAddItem(this, Pos, [Item]));
|
||||
CParagraphContentWithParagraphLikeContent.prototype.Add_ToContent.apply(this, arguments);
|
||||
};
|
||||
|
||||
CFieldContent.prototype.Remove_FromContent = function(Pos, Count, UpdatePosition)
|
||||
{
|
||||
let DeletedItems = this.Content.slice( Pos, Pos + Count );
|
||||
AscCommon.History.Add(new CChangesFormFieldRemoveItem(this, Pos, DeletedItems));
|
||||
CParagraphContentWithParagraphLikeContent.prototype.Remove_FromContent.apply(this, arguments);
|
||||
};
|
||||
CFieldContent.prototype.fromXml = function (reader) {
|
||||
CParagraphContentWithParagraphLikeContent.prototype.fromXml.call(this, reader);
|
||||
};
|
||||
CFieldContent.prototype.toXml = function (writer) {
|
||||
writer.WriteXmlNodeStart("w:sdtContent");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
CParagraphContentWithParagraphLikeContent.prototype.toXml.call(this, writer);
|
||||
writer.WriteXmlNodeEnd("w:sdtContent");
|
||||
};
|
||||
|
||||
function CField() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.EndcriptedData = [];
|
||||
this.FieldContent = null;
|
||||
}
|
||||
InitClass(CField, CBaseFormatObject, AscDFH.historyitem_type_FormField);
|
||||
CField.prototype.setFieldContent = function(oFieldContent) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_FormField_Content, this.FieldContent, oFieldContent));
|
||||
this.FieldContent = oFieldContent;
|
||||
};
|
||||
CField.prototype.addEncryptedData = function(oEncryptedData) {
|
||||
AscCommon.History.Add(new CChangesContent(this, AscDFH.historyitem_FormField_EncryptedData, this.EndcriptedData.length, [oEncryptedData], true));
|
||||
this.EndcriptedData.push(oEncryptedData);
|
||||
};
|
||||
CField.prototype.setFieldMaster = function(oFieldMaster) {
|
||||
AscCommon.History.Add(new CChangesObject(this, AscDFH.historyitem_FormField_FieldMaster, this.FieldMaster, oFieldMaster));
|
||||
this.FieldMaster = oFieldMaster;
|
||||
};
|
||||
CField.prototype.readChildXml = function (name, reader) {
|
||||
switch (name) {
|
||||
case "EncryptedData": {
|
||||
let oEncryptedData = new CEncryptedData();
|
||||
oEncryptedData.fromXml(reader);
|
||||
this.addEncryptedData(oEncryptedData);
|
||||
break;
|
||||
}
|
||||
case "Body": {
|
||||
let oFieldContent = null;
|
||||
let oNode = new CT_XmlNode(function (reader, name) {
|
||||
if(name === "sdtContent") {
|
||||
oFieldContent = new CFieldContent();
|
||||
oFieldContent.fromXml(reader);
|
||||
return oFieldContent;
|
||||
}
|
||||
return null;
|
||||
});
|
||||
oNode.fromXml(reader);
|
||||
if(oFieldContent) {
|
||||
this.setFieldContent(oFieldContent);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CField.prototype.toXml = function(writer) {
|
||||
writer.WriteXmlString(AscCommonWord.g_sXmlHeader);
|
||||
writer.WriteXmlNodeStart("Field");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
if(this.FieldContent) {
|
||||
writer.WriteXmlNodeStart("Body");
|
||||
writer.WriteXmlString(AscCommonWord.g_sXmlDocumentNamespaces);
|
||||
writer.WriteXmlAttributesEnd();
|
||||
this.FieldContent.toXml(writer);
|
||||
writer.WriteXmlNodeEnd("Body");
|
||||
}
|
||||
for(let nData = 0; nData < this.EndcriptedData.length; ++nData) {
|
||||
this.EndcriptedData[nData].toXml(writer);
|
||||
}
|
||||
writer.WriteXmlNodeEnd("Field");
|
||||
};
|
||||
|
||||
function CEncryptedData() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.EncryptedMethod = null;
|
||||
this.EncryptedValue = null;
|
||||
this.KeyInfo = null;
|
||||
}
|
||||
InitClass(CEncryptedData, CBaseFormatObject, AscDFH.historyitem_type_EncryptedData);
|
||||
CEncryptedData.prototype.setEncryptedMethod = function (sEncryptedMethod) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_EncryptedData_Method, this.EncryptedMethod, sEncryptedMethod));
|
||||
this.EncryptedMethod = sEncryptedMethod;
|
||||
};
|
||||
CEncryptedData.prototype.setEncryptedValue = function (sEncryptedValue) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_EncryptedData_Value, this.EncryptedValue, sEncryptedValue));
|
||||
this.EncryptedValue = sEncryptedValue;
|
||||
};
|
||||
CEncryptedData.prototype.setKeyInfo = function (oKeyInfo) {
|
||||
AscCommon.History.Add(new CChangesObject(this, AscDFH.historyitem_EncryptedData_KeyInfo, this.KeyInfo, oKeyInfo));
|
||||
this.KeyInfo = oKeyInfo;
|
||||
};
|
||||
CEncryptedData.prototype.readChildXml = function (name, reader) {
|
||||
switch (name) {
|
||||
case "EncryptedMethod": {
|
||||
let oMethod = new CT_XmlNode();
|
||||
oMethod.fromXml(reader);
|
||||
let sAlgorithm = oMethod.attributes["Algorithm"];
|
||||
if(sAlgorithm) {
|
||||
this.setEncryptedMethod(sAlgorithm)
|
||||
}
|
||||
break;
|
||||
}
|
||||
case "EncryptedValue": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setEncryptedValue(oNode.text);
|
||||
break;
|
||||
}
|
||||
case "KeyInfo": {
|
||||
let oKeyInfo = new CKeyInfo();
|
||||
oKeyInfo.fromXml(reader);
|
||||
this.setKeyInfo(oKeyInfo)
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CEncryptedData.prototype.toXml = function(writer) {
|
||||
writer.WriteXmlNodeStart("EncryptedData");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
if(this.EncryptedMethod) {
|
||||
let oMethod = new CT_XmlNode();
|
||||
oMethod.attributes["Algorithm"] = this.EncryptedMethod;
|
||||
oMethod.toXml(writer, "EncryptedMethod");
|
||||
}
|
||||
if(this.EncryptedValue) {
|
||||
let oValue = new CT_XmlNode();
|
||||
oValue.text = this.EncryptedValue;
|
||||
oValue.toXml(writer, "EncryptedValue");
|
||||
}
|
||||
if(this.KeyInfo) {
|
||||
this.KeyInfo.toXml(writer);
|
||||
}
|
||||
writer.WriteXmlNodeEnd("EncryptedData");
|
||||
};
|
||||
|
||||
function CKeyInfo() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.UserId = null;
|
||||
this.Value = null;
|
||||
}
|
||||
InitClass(CKeyInfo, CBaseFormatObject, AscDFH.historyitem_type_KeyInfo);
|
||||
CKeyInfo.prototype.setUserId = function (sUserId) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_KeyInfo_User, this.UserId, sUserId));
|
||||
this.UserId = sUserId;
|
||||
};
|
||||
CKeyInfo.prototype.setValue = function (sValue) {
|
||||
AscCommon.History.Add(new CChangesObject(this, AscDFH.historyitem_KeyInfo_Value, this.Value, sValue));
|
||||
this.Value = sValue;
|
||||
};
|
||||
CKeyInfo.prototype.readChildXml = function (name, reader) {
|
||||
switch (name) {
|
||||
case "User": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setUserId(oNode.attributes["id"]);
|
||||
break;
|
||||
}
|
||||
case "Value": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setValue(oNode.text);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CKeyInfo.prototype.toXml = function(writer) {
|
||||
writer.WriteXmlNodeStart("KeyInfo");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
if(this.UserId) {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.attributes["id"] = this.UserId;
|
||||
oNode.toXml(writer, "User");
|
||||
}
|
||||
if(this.Value) {
|
||||
let oValue = new CT_XmlNode();
|
||||
oValue.text = this.Value;
|
||||
oValue.toXml(writer, "Value");
|
||||
}
|
||||
writer.WriteXmlNodeEnd("KeyInfo");
|
||||
};
|
||||
|
||||
AscWord.CFieldContent = CFieldContent;
|
||||
AscWord.CFieldMaster = CFieldMaster;
|
||||
AscWord.CField = CField;
|
||||
AscWord.CEncryptedData = CEncryptedData;
|
||||
AscWord.CKeyInfo = CKeyInfo;
|
||||
AscWord.CSignRequest = CSignRequest;
|
||||
})(window);
|
||||
197
oform/FieldMaster.js
Normal file
197
oform/FieldMaster.js
Normal file
@ -0,0 +1,197 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window)
|
||||
{
|
||||
/**
|
||||
*
|
||||
* @constructor
|
||||
*/
|
||||
function CFieldMaster()
|
||||
{
|
||||
AscFormat.CBaseFormatObject.call(this);
|
||||
|
||||
this.FieldId = null;
|
||||
this.Field = null;
|
||||
this.Users = [];
|
||||
this.Signers = [];
|
||||
}
|
||||
AscFormat.InitClass(CFieldMaster, AscFormat.CBaseFormatObject, AscDFH.historyitem_type_OForm_FieldMaster);
|
||||
CFieldMaster.prototype.setLogicField = function(logicField)
|
||||
{
|
||||
this.Field = logicField;
|
||||
};
|
||||
CFieldMaster.prototype.setFieldId = function(fieldId)
|
||||
{
|
||||
if (fieldId === this.FieldId)
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormFieldMasterFieldId(this, this.FieldId, fieldId));
|
||||
this.FieldId = fieldId;
|
||||
};
|
||||
CFieldMaster.prototype.getFieldId = function()
|
||||
{
|
||||
return this.FieldId;
|
||||
};
|
||||
CFieldMaster.prototype.addUser = function(user)
|
||||
{
|
||||
if (-1 !== this.Users.indexOf(user))
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormFieldMasterAddUser(this, user));
|
||||
this.Users.push(user);
|
||||
};
|
||||
CFieldMaster.prototype.removeUser = function(user)
|
||||
{
|
||||
let index = this.User.indexOf(user);
|
||||
if (-1 === index)
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormFieldMasterRemoveUser(this, user));
|
||||
this.Users.splice(index, 1);
|
||||
};
|
||||
CFieldMaster.prototype.addSigner = function(user)
|
||||
{
|
||||
if (-1 !== this.Signers.indexOf(user))
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormFieldMasterAddSigner(this, user));
|
||||
this.Signers.push(user);
|
||||
};
|
||||
CFieldMaster.prototype.removeSigner = function(user)
|
||||
{
|
||||
let index = this.Signers.indexOf(user);
|
||||
if (-1 === index)
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormFieldMasterRemoveSigner(this, user));
|
||||
this.Signers.splice(index, 1);
|
||||
};
|
||||
CFieldMaster.prototype.readAttrXml = function(name, reader)
|
||||
{
|
||||
switch (name)
|
||||
{
|
||||
case "id":
|
||||
{
|
||||
this.setFieldId(reader.GetValue());
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CFieldMaster.prototype.readChildXml = function(name, reader)
|
||||
{
|
||||
let oThis = this;
|
||||
switch (name)
|
||||
{
|
||||
case "Users":
|
||||
{
|
||||
let oUsersNode = new CT_XmlNode(function(reader, name)
|
||||
{
|
||||
if (name === "User")
|
||||
{
|
||||
let oUserNode = new CT_XmlNode();
|
||||
oUserNode.fromXml(reader);
|
||||
let sId = oUserNode.attributes["id"];
|
||||
let oRel = reader.rels.getRelationshipById(sId);
|
||||
reader.context.addFieldMasterRelation(oThis, oRel.targetFullName)
|
||||
}
|
||||
return true;
|
||||
});
|
||||
oUsersNode.fromXml(reader);
|
||||
break;
|
||||
}
|
||||
case "SignRequest":
|
||||
{
|
||||
let oSignRequest = new CSignRequest();
|
||||
oSignRequest.fromXml(reader);
|
||||
this.setSignRequest(oSignRequest);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CFieldMaster.prototype.toXml = function(writer)
|
||||
{
|
||||
writer.WriteXmlString(AscCommonWord.g_sXmlHeader);
|
||||
writer.WriteXmlNodeStart("FieldMaster");
|
||||
writer.WriteXmlAttributeString("xmlns:r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||||
writer.WriteXmlNullableAttributeString("id", this.FieldId);
|
||||
writer.WriteXmlAttributesEnd();
|
||||
|
||||
writer.WriteXmlNodeStart("Users");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
let oContext = writer.context;
|
||||
let oUserMasterPartMap = oContext.userMasterPartMap;
|
||||
let oUsersIdMap = {};
|
||||
for (let nUser = 0; nUser < this.Users.length; ++nUser)
|
||||
{
|
||||
let oUser = this.Users[nUser];
|
||||
let oPart = oUserMasterPartMap[oUser.Id];
|
||||
if (!oPart)
|
||||
{
|
||||
oPart = writer.context.part.addPart(AscCommon.openXml.Types.userMaster);
|
||||
let oUserMemory = new AscCommon.CMemory();
|
||||
oUserMemory.context = writer.context;
|
||||
oPart.part.setDataXml(oUser, oUserMemory);
|
||||
oUserMasterPartMap[oUser.Id] = oPart;
|
||||
}
|
||||
let oNode = new CT_XmlNode();
|
||||
let sRId = oContext.part.addRelationship(AscCommon.openXml.Types.userMaster.relationType, oPart.uri);
|
||||
oNode.attributes["r:id"] = sRId
|
||||
oUsersIdMap[oUser.Id] = sRId;
|
||||
oNode.toXml(writer, "User");
|
||||
}
|
||||
writer.WriteXmlNodeEnd("Users");
|
||||
if (this.SignRequest)
|
||||
{
|
||||
this.SignRequest.toXml(writer, oUsersIdMap);
|
||||
}
|
||||
writer.WriteXmlNodeEnd("FieldMaster");
|
||||
|
||||
if (writer.context.fileType === Asc.c_oAscFileType.OFORM)
|
||||
{
|
||||
if (this.Field)
|
||||
{
|
||||
let oPart = writer.context.docPart.part.addPartWithoutRels(AscCommon.openXml.Types.field);
|
||||
let oMemory = new AscCommon.CMemory();
|
||||
oMemory.context = writer.context;
|
||||
oPart.setDataXml(this.Field, oMemory);
|
||||
oMemory.Seek(0);
|
||||
oPart.addRelationship(AscCommon.openXml.Types.fieldMaster.relationType, oContext.part.uri)
|
||||
}
|
||||
}
|
||||
};
|
||||
//--------------------------------------------------------export----------------------------------------------------
|
||||
AscOForm.CFieldMaster = CFieldMaster;
|
||||
|
||||
})(window);
|
||||
316
oform/Main.js
Normal file
316
oform/Main.js
Normal file
@ -0,0 +1,316 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window, undefined) {
|
||||
|
||||
const CBaseFormatObject = AscFormat.CBaseFormatObject;
|
||||
const InitClass = AscFormat.InitClass;
|
||||
const CChangesString = AscDFH.CChangesDrawingsString;
|
||||
const CChangesObject = AscDFH.CChangesDrawingsObject;
|
||||
const CChangesContent = AscDFH.CChangesDrawingsContent;
|
||||
const CChangesLong = AscDFH.CChangesDrawingsLong;
|
||||
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_Author] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_Date] = CChangesObject;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_Description] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_Type] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_Application] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_DocumentId] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_FieldsGroups] = CChangesContent;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_MainDocument_User] = CChangesContent;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormDate_Format] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FormDate_Value] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FieldsGroup_Id] = CChangesString;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FieldsGroup_Weight] = CChangesLong;
|
||||
AscDFH.changesFactory[AscDFH.historyitem_FieldsGroup_Field] = CChangesContent;
|
||||
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_MainDocument_Author] = function (oClass, value) {oClass.Author = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_MainDocument_Date] = function (oClass, value) {oClass.Date = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_MainDocument_Description] = function (oClass, value) {oClass.Description = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_MainDocument_Type] = function (oClass, value) {oClass.Type = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_MainDocument_Application] = function (oClass, value) {oClass.Application = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_MainDocument_DocumentId] = function (oClass, value) {oClass.DocumentId = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FormDate_Format] = function (oClass, value) {oClass.Format = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FormDate_Value] = function (oClass, value) {oClass.Value = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FieldsGroup_Id] = function (oClass, value) {oClass.GroupId = value;};
|
||||
AscDFH.drawingsChangesMap[AscDFH.historyitem_FieldsGroup_Weight] = function (oClass, value) {oClass.Weight = value;};
|
||||
|
||||
AscDFH.drawingContentChanges[AscDFH.historyitem_MainDocument_FieldsGroups] = function (oClass) {return oClass.FieldsGroups;};
|
||||
AscDFH.drawingContentChanges[AscDFH.historyitem_MainDocument_User] = function (oClass) {return oClass.Users;};
|
||||
AscDFH.drawingContentChanges[AscDFH.historyitem_FieldsGroup_Field] = function (oClass) {return oClass.Fields;};
|
||||
|
||||
|
||||
function CMainDocument() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.Author = null;
|
||||
this.Date = null;
|
||||
this.Description = null;
|
||||
this.Type = null;
|
||||
this.Application = null;
|
||||
this.DocumentId = null;
|
||||
this.FieldsGroups = [];
|
||||
|
||||
this.Users = [];
|
||||
}
|
||||
InitClass(CMainDocument, CBaseFormatObject, AscDFH.historyitem_type_MainDocument);
|
||||
CMainDocument.prototype.setAuthor = function (sAuthor) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_MainDocument_Author, this.Author, sAuthor));
|
||||
this.Author = sAuthor;
|
||||
};
|
||||
CMainDocument.prototype.setDate = function (oDate) {
|
||||
AscCommon.History.Add(new CChangesObject(this, AscDFH.historyitem_MainDocument_Date, this.Date, oDate));
|
||||
this.Date = oDate;
|
||||
};
|
||||
CMainDocument.prototype.setDescription = function (sDescription) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_MainDocument_Description, this.Description, sDescription));
|
||||
this.Description = sDescription;
|
||||
};
|
||||
CMainDocument.prototype.setType = function (sType) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_MainDocument_Type, this.Type, sType));
|
||||
this.Type = sType;
|
||||
};
|
||||
CMainDocument.prototype.setApplication = function (sApplication) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_MainDocument_Application, this.Application, sApplication));
|
||||
this.Application = sApplication;
|
||||
};
|
||||
CMainDocument.prototype.setDocumentId = function (sDocumentId) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_MainDocument_DocumentId, this.DocumentId, sDocumentId));
|
||||
this.DocumentId = sDocumentId;
|
||||
};
|
||||
CMainDocument.prototype.addFieldsGroups = function(oFieldsGroup) {
|
||||
AscCommon.History.Add(new CChangesContent(this, AscDFH.historyitem_MainDocument_FieldsGroups, this.FieldsGroups.length, [oFieldsGroup], true));
|
||||
this.FieldsGroups.push(oFieldsGroup);
|
||||
};
|
||||
CMainDocument.prototype.addUser = function(oUser) {
|
||||
AscCommon.History.Add(new CChangesContent(this, AscDFH.historyitem_MainDocument_User, this.FieldsGroups.length, [oUser], true));
|
||||
this.Users.push(oUser);
|
||||
};
|
||||
CMainDocument.prototype.readChildXml = function (name, reader) {
|
||||
switch (name) {
|
||||
case "Author": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
let sAuthor = oNode.attributes["id"];
|
||||
if(sAuthor) {
|
||||
this.setAuthor(sAuthor);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case "Date": {
|
||||
let oDate = new CFormDate();
|
||||
oDate.fromXml(reader);
|
||||
this.setDate(oDate);
|
||||
break;
|
||||
}
|
||||
case "Description": {
|
||||
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setDescription(oNode.text);
|
||||
break;
|
||||
}
|
||||
case "Type": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setType(oNode.text);
|
||||
break;
|
||||
}
|
||||
case "Application": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setApplication(oNode.text);
|
||||
break;
|
||||
}
|
||||
case "Id": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setDocumentId(oNode.text);
|
||||
break;
|
||||
}
|
||||
case "FieldsGroup": {
|
||||
let oFieldsGroup = new CFieldsGroup();
|
||||
oFieldsGroup.fromXml(reader);
|
||||
this.addFieldsGroups(oFieldsGroup);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CMainDocument.prototype.toXml = function(writer) {
|
||||
|
||||
writer.WriteXmlString(AscCommonWord.g_sXmlHeader);
|
||||
writer.WriteXmlNodeStart("Document");
|
||||
writer.WriteXmlAttributeString("xmlns:r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
if(this.Author) {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.attributes["id"] = this.Author;
|
||||
oNode.toXml(writer, "Author");
|
||||
}
|
||||
if(this.Date) {
|
||||
this.Date.toXml(writer);
|
||||
}
|
||||
let oDescriptionNode = new CT_XmlNode();
|
||||
oDescriptionNode.text = this.Description;
|
||||
oDescriptionNode.toXml(writer, "Description");
|
||||
|
||||
let oTypeNode = new CT_XmlNode();
|
||||
oTypeNode.text = this.Type;
|
||||
oTypeNode.toXml(writer, "Type");
|
||||
|
||||
let oAppNode = new CT_XmlNode();
|
||||
oAppNode.text = this.Application;
|
||||
oAppNode.toXml(writer, "Application");
|
||||
|
||||
let oIdNode = new CT_XmlNode();
|
||||
oIdNode.text = this.DocumentId;
|
||||
oIdNode.toXml(writer, "Id");
|
||||
for(let nFG = 0; nFG < this.FieldsGroups.length; ++nFG) {
|
||||
this.FieldsGroups[nFG].toXml(writer);
|
||||
}
|
||||
writer.WriteXmlNodeEnd("Document");
|
||||
};
|
||||
|
||||
function CFormDate() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.Format = null;
|
||||
this.Value = null;
|
||||
}
|
||||
InitClass(CFormDate, CBaseFormatObject, AscDFH.historyitem_type_FormDate);
|
||||
CFormDate.prototype.setFormat = function(sFormat) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_FormDate_Format, this.Format, sFormat));
|
||||
this.Format = sFormat;
|
||||
};
|
||||
CFormDate.prototype.setValue = function(sValue) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_FormDate_Value, this.Value, sValue));
|
||||
this.Value = sValue;
|
||||
};
|
||||
CFormDate.prototype.readChildXml = function (name, reader) {
|
||||
switch (name) {
|
||||
case "Format": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setFormat(oNode.text);
|
||||
break;
|
||||
}
|
||||
case "Value": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setValue(oNode.text);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CFormDate.prototype.toXml = function (writer) {
|
||||
writer.WriteXmlNodeStart("Date");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
|
||||
let oFormatNode = new CT_XmlNode();
|
||||
oFormatNode.text = this.Format;
|
||||
oFormatNode.toXml(writer, "Format");
|
||||
|
||||
let oValueNode = new CT_XmlNode();
|
||||
oValueNode.text = this.Value;
|
||||
oValueNode.toXml(writer, "Value");
|
||||
|
||||
writer.WriteXmlNodeEnd("Date");
|
||||
};
|
||||
|
||||
function CFieldsGroup() {
|
||||
CBaseFormatObject.call(this);
|
||||
this.GroupId = null;
|
||||
this.Weight = null;
|
||||
this.Fields = [];
|
||||
}
|
||||
InitClass(CFieldsGroup, CBaseFormatObject, AscDFH.historyitem_type_FieldsGroup);
|
||||
CFieldsGroup.prototype.setGroupId = function (sGroupId) {
|
||||
AscCommon.History.Add(new CChangesString(this, AscDFH.historyitem_FieldsGroup_Id, this.GroupId, sGroupId));
|
||||
this.GroupId = sGroupId;
|
||||
};
|
||||
CFieldsGroup.prototype.setWeight = function (nWeight) {
|
||||
AscCommon.History.Add(new CChangesLong(this, AscDFH.historyitem_FieldsGroup_Weight, this.Weight, nWeight));
|
||||
this.Weight = nWeight;
|
||||
};
|
||||
CFieldsGroup.prototype.addField = function (oField) {
|
||||
AscCommon.History.Add(new CChangesContent(this, AscDFH.historyitem_FieldsGroup_Field, this.Fields.length, [oField], true));
|
||||
this.Fields.push(oField);
|
||||
};
|
||||
CFieldsGroup.prototype.readAttrXml = function(name, reader) {
|
||||
switch (name) {
|
||||
case "id": {
|
||||
this.setGroupId(reader.GetValue());
|
||||
break;
|
||||
}
|
||||
case "weight": {
|
||||
this.setWeight(reader.GetValueInt());
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CFieldsGroup.prototype.readChildXml = function(name, reader) {
|
||||
switch (name) {
|
||||
case "Field": {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
let sId = oNode.attributes["id"];
|
||||
let oRel = reader.rels.getRelationshipById(sId);
|
||||
reader.context.addFieldGroupRelation(this, oRel.targetFullName);
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
CFieldsGroup.prototype.toXml = function (writer) {
|
||||
writer.WriteXmlNodeStart("FieldsGroup");
|
||||
writer.WriteXmlNullableAttributeString("id", this.GroupId);
|
||||
writer.WriteXmlNullableAttributeInt("weight", this.Weight);
|
||||
writer.WriteXmlAttributesEnd();
|
||||
|
||||
let oContext = writer.context;
|
||||
let oFldMasterPartMap = oContext.fieldMastersPartMap;
|
||||
for(let nFldMaster = 0; nFldMaster < this.Fields.length; ++nFldMaster) {
|
||||
let oFieldMaster = this.Fields[nFldMaster];
|
||||
let oPart = oFldMasterPartMap[oFieldMaster.Id];
|
||||
if(oPart) {
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.attributes["r:id"] = oContext.part.addRelationship(AscCommon.openXml.Types.fieldMaster.relationType, oPart.part.uri);
|
||||
oNode.toXml(writer, "Field");
|
||||
}
|
||||
}
|
||||
|
||||
writer.WriteXmlNodeEnd("FieldsGroup");
|
||||
};
|
||||
|
||||
AscWord.CMainDocument = CMainDocument;
|
||||
AscWord.CFieldsGroup = CFieldsGroup;
|
||||
AscWord.CFormDate = CFormDate;
|
||||
})(window);
|
||||
118
oform/User.js
Normal file
118
oform/User.js
Normal file
@ -0,0 +1,118 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window)
|
||||
{
|
||||
/**
|
||||
* @param {AscOForm.CUserMaster} userMaster
|
||||
* @constructor
|
||||
*/
|
||||
function CUser(userMaster)
|
||||
{
|
||||
AscFormat.CBaseFormatObject.call(this);
|
||||
|
||||
this.Email = undefined;
|
||||
this.Telephone = undefined;
|
||||
this.UserMaster = undefined;
|
||||
|
||||
if (userMaster)
|
||||
this.setUserMaster(userMaster);
|
||||
}
|
||||
AscFormat.InitClass(CUser, AscFormat.CBaseFormatObject, AscDFH.historyitem_type_OForm_User);
|
||||
CUser.prototype.setUserMaster = function(userMaster)
|
||||
{
|
||||
if (this.UserMaster === userMaster)
|
||||
return;
|
||||
|
||||
let oldValue = this.UserMaster ? this.UserMaster.GetId() : undefined;
|
||||
let newValue = userMaster ? userMaster.GetId() : undefined;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormUserUserMaster(this, oldValue, newValue));
|
||||
this.UserMaster = userMaster;
|
||||
};
|
||||
CUser.prototype.setEmail = function(email)
|
||||
{
|
||||
if (email === this.Email)
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormUserEmail(this, this.Email, email));
|
||||
this.Email = email;
|
||||
};
|
||||
CUser.prototype.setTelephone = function(telephone)
|
||||
{
|
||||
if (telephone === this.Telephone)
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormUserTelephone(this, this.Telephone, telephone));
|
||||
this.Telephone = telephone;
|
||||
};
|
||||
CUser.prototype.getUserMaster = function()
|
||||
{
|
||||
return this.UserMaster;
|
||||
};
|
||||
CUser.prototype.readChildXml = function(name, reader)
|
||||
{
|
||||
let bRead = false;
|
||||
switch (name)
|
||||
{
|
||||
case "Email":
|
||||
{
|
||||
let node = CT_XmlNode.fromReader(reader);
|
||||
this.setEmail(node.text);
|
||||
bRead = true;
|
||||
break;
|
||||
}
|
||||
case "Telephone":
|
||||
{
|
||||
let node = CT_XmlNode.fromReader(reader);
|
||||
this.setTelephone(node.text);
|
||||
bRead = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return bRead;
|
||||
};
|
||||
CUser.prototype.toXml = function(writer)
|
||||
{
|
||||
writer.WriteXmlString(AscCommonWord.g_sXmlHeader);
|
||||
writer.WriteXmlNodeStart("User");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
writer.WriteXmlNodeWithText("Email", this.Email);
|
||||
writer.WriteXmlNodeWithText("Telephone", this.Telephone);
|
||||
writer.WriteXmlNodeEnd("User");
|
||||
};
|
||||
//--------------------------------------------------------export----------------------------------------------------
|
||||
AscOForm.CUser = CUser;
|
||||
|
||||
})(window);
|
||||
101
oform/UserMaster.js
Normal file
101
oform/UserMaster.js
Normal file
@ -0,0 +1,101 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window)
|
||||
{
|
||||
/**
|
||||
*
|
||||
* @constructor
|
||||
*/
|
||||
function CUserMaster()
|
||||
{
|
||||
AscFormat.CBaseFormatObject.call(this);
|
||||
|
||||
this.UserId = undefined;
|
||||
this.Role = undefined;
|
||||
}
|
||||
AscFormat.InitClass(CUserMaster, AscFormat.CBaseFormatObject, AscDFH.historyitem_type_OForm_UserMaster);
|
||||
CUserMaster.prototype.setUserId = function(userId)
|
||||
{
|
||||
if (userId === this.UserId)
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormUserMasterUserId(this, this.UserId, userId));
|
||||
this.UserId = userId;
|
||||
};
|
||||
CUserMaster.prototype.setRole = function(role)
|
||||
{
|
||||
if (role === this.Role)
|
||||
return;
|
||||
|
||||
AscCommon.History.Add(new AscDFH.CChangesOFormUserMasterRole(this, this.Role, role));
|
||||
this.Role = role;
|
||||
};
|
||||
CUserMaster.prototype.readChildXml = function(name, reader)
|
||||
{
|
||||
let bRead = false;
|
||||
switch (name)
|
||||
{
|
||||
case "Id":
|
||||
{
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setUserId(oNode.text);
|
||||
bRead = true;
|
||||
break;
|
||||
}
|
||||
case "Role":
|
||||
{
|
||||
let oNode = new CT_XmlNode();
|
||||
oNode.fromXml(reader);
|
||||
this.setRole(oNode.text);
|
||||
bRead = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return bRead;
|
||||
};
|
||||
CUserMaster.prototype.toXml = function(writer)
|
||||
{
|
||||
writer.WriteXmlString(AscCommonWord.g_sXmlHeader);
|
||||
writer.WriteXmlNodeStart("UserMaster");
|
||||
writer.WriteXmlAttributesEnd();
|
||||
writer.WriteXmlNodeWithText("Id", this.UserId);
|
||||
writer.WriteXmlNodeWithText("Role", this.Role);
|
||||
writer.WriteXmlNodeEnd("UserMaster");
|
||||
};
|
||||
//--------------------------------------------------------export----------------------------------------------------
|
||||
AscOForm.CUserMaster = CUserMaster;
|
||||
|
||||
})(window);
|
||||
216
oform/changes/FieldMasterChanges.js
Normal file
216
oform/changes/FieldMasterChanges.js
Normal file
@ -0,0 +1,216 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window)
|
||||
{
|
||||
window['AscDFH'].historyitem_FormFieldMaster_FieldId = window['AscDFH'].historyitem_type_OForm_FieldMaster | 1;
|
||||
window['AscDFH'].historyitem_FormFieldMaster_AddUser = window['AscDFH'].historyitem_type_OForm_FieldMaster | 2;
|
||||
window['AscDFH'].historyitem_FormFieldMaster_RemoveUser = window['AscDFH'].historyitem_type_OForm_FieldMaster | 3;
|
||||
window['AscDFH'].historyitem_FormFieldMaster_AddSigner = window['AscDFH'].historyitem_type_OForm_FieldMaster | 4;
|
||||
window['AscDFH'].historyitem_FormFieldMaster_RemoveSigner = window['AscDFH'].historyitem_type_OForm_FieldMaster | 5;
|
||||
|
||||
|
||||
/**
|
||||
* Базовое изменение для работы с FieldMaster.Users и FieldMaster.Signers
|
||||
* @constructor
|
||||
* @extends {window['AscDFH'].CChangesBase}
|
||||
*/
|
||||
function CChangeUserBase(Class, user)
|
||||
{
|
||||
AscDFH.CChangesBase.call(this, Class);
|
||||
this.UserId = user.GetId();
|
||||
}
|
||||
CChangeUserBase.prototype = Object.create(AscDFH.CChangesBase.prototype);
|
||||
CChangeUserBase.prototype.constructor = CChangeUserBase;
|
||||
CChangeUserBase.prototype.Redo = function()
|
||||
{
|
||||
};
|
||||
CChangeUserBase.prototype.Undo = function()
|
||||
{
|
||||
};
|
||||
CChangeUserBase.prototype.WriteToBinary = function(writer)
|
||||
{
|
||||
// String : Id комментария
|
||||
writer.WriteString2(this.UserId);
|
||||
};
|
||||
CChangeUserBase.prototype.ReadFromBinary = function(reader)
|
||||
{
|
||||
// String : Id комментария
|
||||
this.UserId = reader.GetString2();
|
||||
};
|
||||
CChangeUserBase.prototype.IsNeedRecalculate = function()
|
||||
{
|
||||
return false;
|
||||
};
|
||||
|
||||
function InheritUserChange(changeClass, type, redoFunction, undoFunction)
|
||||
{
|
||||
window['AscDFH'].changesFactory[type] = changeClass;
|
||||
|
||||
changeClass.prototype = Object.create(CChangeUserBase.prototype);
|
||||
changeClass.prototype.constructor = changeClass;
|
||||
changeClass.prototype.Type = type;
|
||||
changeClass.prototype.Redo = redoFunction;
|
||||
changeClass.prototype.Undo = undoFunction;
|
||||
}
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {window['AscDFH'].CChangesBaseStringProperty}
|
||||
*/
|
||||
function CChangesOFormFieldMasterFieldId(Class, Old, New)
|
||||
{
|
||||
window['AscDFH'].CChangesBaseStringProperty.call(this, Class, Old, New);
|
||||
}
|
||||
window['AscDFH'].InheritPropertyChange(
|
||||
CChangesOFormFieldMasterFieldId,
|
||||
window['AscDFH'].CChangesBaseStringProperty,
|
||||
window['AscDFH'].historyitem_FormFieldMaster_FieldId,
|
||||
function(value)
|
||||
{
|
||||
this.Class.FieldId = value;
|
||||
},
|
||||
false
|
||||
);
|
||||
window['AscDFH'].CChangesOFormFieldMasterFieldId = CChangesOFormFieldMasterFieldId;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {CChangeUserBase}
|
||||
*/
|
||||
function CChangesOFormFieldMasterAddUser(Class, user)
|
||||
{
|
||||
CChangeUserBase.call(this, Class, user);
|
||||
}
|
||||
InheritUserChange(
|
||||
CChangesOFormFieldMasterAddUser,
|
||||
window['AscDFH'].historyitem_FormFieldMaster_AddUser,
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
if (-1 === this.Class.Users.indexOf(user))
|
||||
this.Class.Users.push(user);
|
||||
},
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
let index = this.Class.Users.indexOf(user);
|
||||
if (-1 !== index)
|
||||
this.Class.Users.splice(index, 1);
|
||||
}
|
||||
);
|
||||
window['AscDFH'].CChangesOFormFieldMasterAddUser = CChangesOFormFieldMasterAddUser;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {CChangeUserBase}
|
||||
*/
|
||||
function CChangesOFormFieldMasterRemoveUser(Class, user)
|
||||
{
|
||||
CChangeUserBase.call(this, Class, user);
|
||||
}
|
||||
InheritUserChange(
|
||||
CChangesOFormFieldMasterRemoveUser,
|
||||
window['AscDFH'].historyitem_FormFieldMaster_RemoveUser,
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
let index = this.Class.Users.indexOf(user);
|
||||
if (-1 !== index)
|
||||
this.Class.Users.splice(index, 1);
|
||||
},
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
if (-1 === this.Class.Users.indexOf(user))
|
||||
this.Class.Users.push(user);
|
||||
}
|
||||
);
|
||||
window['AscDFH'].CChangesOFormFieldMasterRemoveUser = CChangesOFormFieldMasterRemoveUser;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {CChangeUserBase}
|
||||
*/
|
||||
function CChangesOFormFieldMasterAddSigner(Class, user)
|
||||
{
|
||||
CChangeUserBase.call(this, Class, user);
|
||||
}
|
||||
InheritUserChange(
|
||||
CChangesOFormFieldMasterAddSigner,
|
||||
window['AscDFH'].historyitem_FormFieldMaster_AddSigner,
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
if (-1 === this.Class.Signers.indexOf(user))
|
||||
this.Class.Signers.push(user);
|
||||
},
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
let index = this.Class.Signers.indexOf(user);
|
||||
if (-1 !== index)
|
||||
this.Class.Signers.splice(index, 1);
|
||||
}
|
||||
);
|
||||
window['AscDFH'].CChangesOFormFieldMasterAddSigner = CChangesOFormFieldMasterAddSigner;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {CChangeUserBase}
|
||||
*/
|
||||
function CChangesOFormFieldMasterRemoveSigner(Class, user)
|
||||
{
|
||||
CChangeUserBase.call(this, Class, user);
|
||||
}
|
||||
InheritUserChange(
|
||||
CChangesOFormFieldMasterRemoveSigner,
|
||||
window['AscDFH'].historyitem_FormFieldMaster_RemoveSigner,
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
let index = this.Class.Signers.indexOf(user);
|
||||
if (-1 !== index)
|
||||
this.Class.Signers.splice(index, 1);
|
||||
},
|
||||
function()
|
||||
{
|
||||
let user = AscCommon.g_oTableId.GetById(this.UserId);
|
||||
if (-1 === this.Class.Signers.indexOf(user))
|
||||
this.Class.Signers.push(user);
|
||||
}
|
||||
);
|
||||
window['AscDFH'].CChangesOFormFieldMasterRemoveSigner = CChangesOFormFieldMasterRemoveSigner;
|
||||
|
||||
})(window);
|
||||
110
oform/changes/UserChanges.js
Normal file
110
oform/changes/UserChanges.js
Normal file
@ -0,0 +1,110 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window)
|
||||
{
|
||||
window['AscDFH'].historyitem_OForm_User_UserMaster = window['AscDFH'].historyitem_type_OForm_User | 1;
|
||||
window['AscDFH'].historyitem_OForm_User_Email = window['AscDFH'].historyitem_type_OForm_User | 2;
|
||||
window['AscDFH'].historyitem_OForm_User_Telephone = window['AscDFH'].historyitem_type_OForm_User | 3;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {window['AscDFH'].CChangesBaseStringProperty}
|
||||
*/
|
||||
function CChangesOFormUserUserMaster(Class, Old, New)
|
||||
{
|
||||
window['AscDFH'].CChangesBaseStringProperty.call(this, Class, Old, New);
|
||||
}
|
||||
window['AscDFH'].InheritPropertyChange(
|
||||
CChangesOFormUserUserMaster,
|
||||
window['AscDFH'].CChangesBaseStringProperty,
|
||||
window['AscDFH'].historyitem_OForm_User_UserMaster,
|
||||
function(value)
|
||||
{
|
||||
if (!value)
|
||||
{
|
||||
this.Class.UserMaster = undefined;
|
||||
}
|
||||
else
|
||||
{
|
||||
let userMaster = AscCommon.g_oTableId.Get_ById(value);
|
||||
if (userMaster)
|
||||
this.Class.UserMaster = userMaster;
|
||||
}
|
||||
},
|
||||
false
|
||||
);
|
||||
window['AscDFH'].CChangesOFormUserUserMaster = CChangesOFormUserUserMaster;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {window['AscDFH'].CChangesBaseStringProperty}
|
||||
*/
|
||||
function CChangesOFormUserEmail(Class, Old, New)
|
||||
{
|
||||
window['AscDFH'].CChangesBaseStringProperty.call(this, Class, Old, New);
|
||||
}
|
||||
window['AscDFH'].InheritPropertyChange(
|
||||
CChangesOFormUserEmail,
|
||||
window['AscDFH'].CChangesBaseStringProperty,
|
||||
window['AscDFH'].historyitem_OForm_User_Email,
|
||||
function(value)
|
||||
{
|
||||
this.Class.Email = value;
|
||||
},
|
||||
false
|
||||
);
|
||||
window['AscDFH'].CChangesOFormUserEmail = CChangesOFormUserEmail;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {window['AscDFH'].CChangesBaseStringProperty}
|
||||
*/
|
||||
function CChangesOFormUserTelephone(Class, Old, New)
|
||||
{
|
||||
window['AscDFH'].CChangesBaseStringProperty.call(this, Class, Old, New);
|
||||
}
|
||||
window['AscDFH'].InheritPropertyChange(
|
||||
CChangesOFormUserTelephone,
|
||||
window['AscDFH'].CChangesBaseStringProperty,
|
||||
window['AscDFH'].historyitem_OForm_User_Telephone,
|
||||
function(value)
|
||||
{
|
||||
this.Class.Telephone = value;
|
||||
},
|
||||
false
|
||||
);
|
||||
window['AscDFH'].CChangesOFormUserTelephone = CChangesOFormUserTelephone;
|
||||
|
||||
})(window);
|
||||
80
oform/changes/UserMasterChanges.js
Normal file
80
oform/changes/UserMasterChanges.js
Normal file
@ -0,0 +1,80 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2019
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||
* street, Riga, Latvia, EU, LV-1050.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
(function(window)
|
||||
{
|
||||
window['AscDFH'].historyitem_OForm_UserMaster_UserId = window['AscDFH'].historyitem_type_OForm_UserMaster | 1;
|
||||
window['AscDFH'].historyitem_OForm_UserMaster_Role = window['AscDFH'].historyitem_type_OForm_UserMaster | 2;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {window['AscDFH'].CChangesBaseStringProperty}
|
||||
*/
|
||||
function CChangesOFormUserMasterUserId(Class, Old, New)
|
||||
{
|
||||
window['AscDFH'].CChangesBaseStringProperty.call(this, Class, Old, New);
|
||||
}
|
||||
window['AscDFH'].InheritPropertyChange(
|
||||
CChangesOFormUserMasterUserId,
|
||||
window['AscDFH'].CChangesBaseStringProperty,
|
||||
window['AscDFH'].historyitem_OForm_UserMaster_UserId,
|
||||
function(Value)
|
||||
{
|
||||
this.Class.UserId = Value;
|
||||
},
|
||||
false
|
||||
);
|
||||
window['AscDFH'].CChangesOFormUserMasterUserId = CChangesOFormUserMasterUserId;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @extends {window['AscDFH'].CChangesBaseStringProperty}
|
||||
*/
|
||||
function CChangesOFormUserMasterRole(Class, Old, New)
|
||||
{
|
||||
window['AscDFH'].CChangesBaseStringProperty.call(this, Class, Old, New);
|
||||
}
|
||||
window['AscDFH'].InheritPropertyChange(
|
||||
CChangesOFormUserMasterRole,
|
||||
window['AscDFH'].CChangesBaseStringProperty,
|
||||
window['AscDFH'].historyitem_OForm_UserMaster_Role,
|
||||
function(Value)
|
||||
{
|
||||
this.Class.Role = Value;
|
||||
},
|
||||
false
|
||||
);
|
||||
window['AscDFH'].CChangesOFormUserMasterRole = CChangesOFormUserMasterRole;
|
||||
|
||||
})(window);
|
||||
Reference in New Issue
Block a user