|
@@ -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"
|
|
|
};
|
|
|
//向业务系统推送消息
|