tangjiang 9 tháng trước cách đây
mục cha
commit
9bd5e1848d

+ 8 - 3
src/DataSharing.Host/Controllers/ProvinceController.cs

@@ -528,12 +528,13 @@ namespace DataSharing.Host.Controllers
             if (!string.IsNullOrEmpty(id))
             {
                 var listFiles = await GetFileData(dto.CliengGuid, dto.CaseSerial, "工单补充");
-                AddOrderComplementDto complementDto = new AddOrderComplementDto
+                AddOrderComplementDto complementDto = new()
                 {
-                    DsBisId = dto.CaseSerial,
+                    CaseSerial = dto.CaseSerial,
+                    Opinion = dto.SupplyContent,
+                    DsBisId = dto.CliengGuid,
                     SupplyName = dto.SupplyName,
                     SupplyTime = dto.SupplyTime,
-                    Opinion = dto.SupplyContent,
                     Files = listFiles
                 };
                 //向业务系统推送消息
@@ -578,8 +579,12 @@ namespace DataSharing.Host.Controllers
             {
                 CancelOrderDto cancelOrder = new()
                 {
+                    RevokeTime = dto.RevokeTime,
+                    RevokeType = dto.RevokeType,
+                    RevokeName = dto.RevokeName,
                     Opinion = dto.RevokeReasion,
                     ProvinceNo = dto.CaseSerial,
+                    CliengGuid = dto.CliengGuid,
                     Source = "province"
                 };
                 //向业务系统推送消息

+ 1 - 1
src/DataSharing/DataSharing.csproj

@@ -8,7 +8,7 @@
 
   <ItemGroup>
     <PackageReference Include="FluentValidation" Version="11.6.0" />
-    <PackageReference Include="Hotline.Share" Version="1.0.84" />
+    <PackageReference Include="Hotline.Share" Version="1.0.85" />
     <PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
     <PackageReference Include="Quartz.Jobs" Version="3.8.0" />
     <PackageReference Include="RestSharp" Version="110.2.0" />