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

BuyerCodeModule1C and GtinIsNotRequired #15

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
3 changes: 3 additions & 0 deletions EdiApi.Client/Types/Messages/DocumentsSettingsForPartner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@ public class DocumentsSettingsForPartner

/// <summary>Набор документов, которыми можно обмениваться с контрагентом</summary>
public DocumentSettings[] DocumentSettings { get; set; }

/// <summary>Настройки товарных позиций</summary>
public GoodItemsSettings GoodItemsSettings { get; set; }
}
}
9 changes: 9 additions & 0 deletions EdiApi.Client/Types/Messages/GoodItemsSettings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace SkbKontur.EdiApi.Client.Types.Messages
{
/// <summary>Настройки товарных позиций</summary>
public class GoodItemsSettings
{
/// <summary>GTIN требуется в товарной позиции</summary>
public bool GtinIsRequired { get; set; }
}
}
3 changes: 3 additions & 0 deletions EdiApi.Client/Types/Parties/PartyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,8 @@ public class PartyInfo
/// Список платных услуг. В API эта информация доступна только сотрудникам организации, для остальных список будет пустой
/// </summary>
public PaidFeatureInfo[] PaidFeatures { get; set; }

/// <summary>Служебный идентификатор Контур.Ритейл</summary>
public string BuyerCodeModule1C { get; set; }
}
}
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.4",
"version": "2.5-pre.2",
"assemblyVersion": {
"precision": "build"
},
Expand Down
Loading