Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add FssSedoDisabilityChildrenDemand #81

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public static class DocflowDescriptionTypes
[DocflowType.FssSedoBillingInformationDemand] = typeof(FssSedoBillingInformationDemandDescription),
[DocflowType.FssSedoBillingInformation] = typeof(FssSedoBillingInformationDescription),
[DocflowType.FssSedoBabyCareVacationCloseNotice] = typeof(FssSedoBabyCareVacationCloseNoticeDescription),
[DocflowType.FssSedoDisabilityChildrenDemand] = typeof(FssSedoDisabilityChildrenDemandDescription),
[DocflowType.FssSedoBenefitPaymentStatusNotice] = typeof(FssSedoBenefitPaymentStatusNoticeDescription),
[DocflowType.FssSedoError] = typeof(FssSedoErrorDescription),
[DocflowType.FssSedoEmployeeSalaryInformation] = typeof(FssSedoEmployeeSalaryInformationDescription),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using System;
using JetBrains.Annotations;

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

[PublicAPI]
public class FssSedoDisabilityChildrenDemandDescription : 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; }
}
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 FssSedoDisabilityChildrenDemand
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

read-receipt надо добавить еще, нет ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Да, добавил

{
/// <summary>
/// Запрос на отправку сообщения "Заявление о возмещении расходов на оплату дополнительных выходных дней для ухода за детьми-инвалидами"
/// </summary>
public static readonly DocumentType Request = "urn:document:fss-sedo-disability-children-demand-request";
/// <summary>
/// Результат отправки сообщения на портал
/// </summary>
public static readonly DocumentType ReceptionResult = "urn:document:fss-sedo-disability-children-demand-reception-result";
/// <summary>
/// Сообщение "Результат обработки заявления о возмещении расходов на оплату дополнительных выходных дней для ухода за детьми-инвалидами"
/// </summary>
public static readonly DocumentType ResultDocument = "urn:document:fss-sedo-disability-children-demand-result-document";
/// <summary>
/// Ошибка взаимодействия с СЭДО
/// </summary>
public static readonly DocumentType ExchangeError = "urn:document:fss-sedo-disability-children-demand-exchange-error";
/// <summary>
/// Ошибка обработки
/// </summary>
public static readonly DocumentType ErrorMessage = "urn:document:fss-sedo-disability-children-demand-error-message";
/// <summary>
/// Сообщение "Решение об отказе в возмещении расходов на оплату дополнительных выходных дней для ухода за детьми-инвалидами"
/// </summary>
public static readonly DocumentType DeclineNoticeDocument = "urn:document:fss-sedo-disability-children-demand-decline-notice-document";
/// <summary>
/// Квитанция о прочтении (используется в методе генерации ответного документа)
/// </summary>
public static readonly DocumentType ReadReceipt = "urn:document:fss-sedo-disability-children-demand-read-receipt";
}

/// <summary>
/// Уведомление о статусе выплаты пособия
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ public partial struct DocflowType
/// </summary>
public static readonly DocflowType FssSedoBabyCareVacationCloseNotice = "urn:docflow:fss-sedo-baby-care-vacation-close-notice";
/// <summary>
/// Заявление о возмещении расходов на оплату дополнительных выходных дней для ухода за детьми-инвалидами
/// </summary>
public static readonly DocflowType FssSedoDisabilityChildrenDemand = "urn:docflow:fss-sedo-disability-children-demand";
/// <summary>
/// Уведомление о статусе выплаты пособия
/// </summary>
public static readonly DocflowType FssSedoBenefitPaymentStatusNotice = "urn:docflow:fss-sedo-benefit-payment-status-notice";
Expand Down