2023-03-03 合同打印修改,在线编辑文档控件增加

This commit is contained in:
2023-03-03 10:46:14 +08:00
parent 1cf35eb878
commit 1a8b21b64f
38 changed files with 3465 additions and 695 deletions
+22 -4
View File
@@ -656,7 +656,6 @@ namespace BLL
QRCodeAttachUrl = person.QRCodeAttachUrl,
IDCardUrl = person.IDCardUrl,
IDCardBackUrl = person.IDCardBackUrl,
SignatureUrl = person.SignatureUrl,
IsForeign = person.IsForeign,
PersonType = person.PersonType,
MaritalStatus = person.MaritalStatus,
@@ -696,6 +695,12 @@ namespace BLL
{
///生成二维码
newPerson.QRCodeAttachUrl = BLL.CreateQRCodeService.CreateCode_Simple("person$" + person.IdentityCard);
}
if (!string.IsNullOrEmpty(person.SignatureUrl))
{
newPerson. SignatureUrl = person.SignatureUrl;
}
db.Person_Persons.InsertOnSubmit(newPerson);
db.SubmitChanges();
@@ -751,7 +756,11 @@ namespace BLL
newPerson.HeadImage = person.HeadImage;
newPerson.IDCardUrl = person.IDCardUrl;
newPerson.IDCardBackUrl = person.IDCardBackUrl;
newPerson.SignatureUrl = person.SignatureUrl;
if (!string.IsNullOrEmpty(person.SignatureUrl))
{
newPerson.SignatureUrl = person.SignatureUrl;
}
newPerson.IsForeign = person.IsForeign;
newPerson.PersonType = person.PersonType;
newPerson.MaritalStatus = person.MaritalStatus;
@@ -845,7 +854,12 @@ namespace BLL
table.QRCodeAttachUrl = newtable.QRCodeAttachUrl;
table.IDCardUrl = newtable.IDCardUrl;
table.IDCardBackUrl = newtable.IDCardBackUrl;
table.SignatureUrl = newtable.SignatureUrl;
if (!string.IsNullOrEmpty(newtable.SignatureUrl))
{
table.SignatureUrl = newtable.SignatureUrl;
}
table.IsForeign = newtable.IsForeign;
table.MaritalStatus = newtable.MaritalStatus;
table.PoliticsStatus = newtable.PoliticsStatus;
@@ -1001,7 +1015,11 @@ namespace BLL
newPerson.HeadImage = person.HeadImage;
newPerson.IDCardUrl = person.IDCardUrl;
newPerson.IDCardBackUrl = person.IDCardBackUrl;
newPerson.SignatureUrl = person.SignatureUrl;
if (!string.IsNullOrEmpty(person.SignatureUrl))
{
newPerson.SignatureUrl = person.SignatureUrl;
}
newPerson.IsForeign = person.IsForeign;
newPerson.PersonType = person.PersonType;
newPerson.MaritalStatus = person.MaritalStatus;