Skip to content

Commit

Permalink
Merge pull request #77 from Loxpex/ka-9509
Browse files Browse the repository at this point in the history
added fss-sedo-appeal-reply
  • Loading branch information
Loxpex authored Jan 15, 2025
2 parents 30ccf11 + 1612bd9 commit 80111e3
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fns;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fns.BusinessRegistration;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fss;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fss.Enums;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Oved;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Pfr;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Rosstat;
Expand Down Expand Up @@ -59,6 +60,7 @@ public static class DocflowDescriptionTypes
[DocflowType.FssSedoBenefitPaymentStatusNotice] = typeof(FssSedoBenefitPaymentStatusNoticeDescription),
[DocflowType.FssSedoError] = typeof(FssSedoErrorDescription),
[DocflowType.FssSedoEmployeeSalaryInformation] = typeof(FssSedoEmployeeSalaryInformationDescription),
[DocflowType.FssSedoAppealReply] = typeof(FssSedoAppealReplyDescription),
[DocflowType.OvedConfirmation] = typeof(OvedConfirmationDescription),
[DocflowType.CbrfReport] = typeof(CbrfReportDescription),
[DocflowType.BusinessRegistration] = typeof(BusinessRegistrationDescription)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
using System;
using JetBrains.Annotations;

namespace Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fss.Enums;

[PublicAPI]
public class FssSedoAppealReplyDescription : FssSedoDescription
{
/// <summary>
/// ИНН организации, за которую сдается отчет
/// </summary>
public string? PayerInn { get; set; }

/// <summary>
/// Отпечаток сертификата отправителя
/// </summary>
public string? SenderCertificateThumbprint { get; set; }

/// <summary>
/// Идентификатор доверенности
/// </summary>
public Guid? WarrantId { get; set; }

/// <summary>
/// Версия формы документа
/// </summary>
public FormVersion? FormVersion { get; set; }

/// <summary>
/// Идентификатор связанного документооборота ФСС
/// </summary>
public Guid? RelatedDocflowId { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,42 @@ public static class FssSedoBabyCareVacationCloseNotice
public static readonly DocumentType ExchangeError = "urn:document:fss-sedo-baby-care-vacation-close-notice-exchange-error";
}

/// <summary>
/// Ответ страхователя на обращение СФР
/// </summary>
[PublicAPI]
public static class FssSedoAppealReply
{
/// <summary>
/// Запрос на отправку сообщения "Ответ страхователя на обращение СФР"
/// </summary>
public static readonly DocumentType Request = "urn:document:fss-sedo-appeal-reply-request";
/// <summary>
/// Квитанция о прочтении (используется в методе генерации ответного документа)
/// </summary>
public static readonly DocumentType ReadReceipt = "urn:document:fss-sedo-appeal-reply-read-receipt";
/// <summary>
/// Результат отправки сообщения на портал
/// </summary>
public static readonly DocumentType ReceptionResult = "urn:document:fss-sedo-appeal-reply-reception-result";
/// <summary>
/// Сообщение "Уведомление о подтверждении получения Фондом сообщения от Страхователя"
/// </summary>
public static readonly DocumentType ResultDocument = "urn:document:fss-sedo-appeal-reply-result-document";
/// <summary>
/// Ошибка взаимодействия с СЭДО
/// </summary>
public static readonly DocumentType ExchangeError = "urn:document:fss-sedo-appeal-reply-exchange-error";
/// <summary>
/// Ошибка обработки
/// </summary>
public static readonly DocumentType ErrorMessage = "urn:document:fss-sedo-appeal-reply-error-message";
/// <summary>
/// Приложение
/// </summary>
public static readonly DocumentType Attachment = "urn:document:fss-sedo-appeal-reply-attachment";
}

/// <summary>
/// Уведомление о статусе выплаты пособия
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,12 @@ public partial struct DocflowType
/// Справка о расчетах ФСС
/// </summary>
public static readonly DocflowType FssSedoBillingInformation = "urn:docflow:fss-sedo-billing-information";

/// <summary>
/// Уведомление о прекращении отпуска по уходу за ребенком до полутора лет
/// </summary>
public static readonly DocflowType FssSedoBabyCareVacationCloseNotice = "urn:docflow:fss-sedo-baby-care-vacation-close-notice";

/// <summary>
/// Уведомление о статусе выплаты пособия
/// </summary>
Expand All @@ -127,5 +129,10 @@ public partial struct DocflowType
/// Сведения о зарплате сотрудника
/// </summary>
public static readonly DocflowType FssSedoEmployeeSalaryInformation = "urn:docflow:fss-sedo-employee-salary-information";

/// <summary>
/// Ответ страхователя на обращение СФР
/// </summary>
public static readonly DocflowType FssSedoAppealReply = "urn:docflow:fss-sedo-appeal-reply";
}
}

0 comments on commit 80111e3

Please sign in to comment.