|
|
@ -9,6 +9,7 @@ using Microsoft.AspNetCore.Mvc; |
|
|
|
using Microsoft.EntityFrameworkCore; |
|
|
|
using Microsoft.Extensions.Logging; |
|
|
|
using Omu.ValueInjecter; |
|
|
|
using Org.BouncyCastle.Asn1.Ocsp; |
|
|
|
using Volo.Abp; |
|
|
|
using Volo.Abp.Data; |
|
|
|
using Volo.Abp.Domain.Entities; |
|
|
@ -484,11 +485,19 @@ public class UnplannedIssueRequestForDongyangAppService : UnplannedIssueRequestA |
|
|
|
|
|
|
|
Check.NotNull(tranType, "事务类型", "事务类型不存在"); |
|
|
|
|
|
|
|
entity.AutoCompleteJob = tranType.AutoCompleteJob; |
|
|
|
entity.AutoSubmit = tranType.AutoSubmitRequest; |
|
|
|
entity.AutoAgree = tranType.AutoAgreeRequest; |
|
|
|
entity.AutoHandle = tranType.AutoHandleRequest; |
|
|
|
entity.DirectCreateNote = tranType.DirectCreateNote; |
|
|
|
entity.AutoCompleteJob = false; |
|
|
|
entity.AutoSubmit = true; |
|
|
|
entity.AutoAgree = false; |
|
|
|
entity.AutoHandle = false; |
|
|
|
entity.DirectCreateNote = false; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//entity.AutoCompleteJob = tranType.AutoCompleteJob;
|
|
|
|
//entity.AutoSubmit = tranType.AutoSubmitRequest;
|
|
|
|
//entity.AutoAgree = tranType.AutoAgreeRequest;
|
|
|
|
//entity.AutoHandle = tranType.AutoHandleRequest;
|
|
|
|
//entity.DirectCreateNote = tranType.DirectCreateNote;
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|