AccountingDocumentBaseStructures.cs
3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
using System;
using System.Collections.Generic;
using System.Linq;
using Sungero.Core;
using Sungero.CoreEntities;
namespace Sungero.Docflow.Structures.AccountingDocumentBase
{
[PublicAttribute]
partial class BuyerTitle
{
public DateTime? AcceptanceDate { get; set; }
/// <summary>
/// Результат приемки.
/// </summary>
public Sungero.Core.Enumeration BuyerAcceptanceStatus { get; set; }
/// <summary>
/// Акт разногласий.
/// </summary>
public string ActOfDisagreement { get; set; }
/// <summary>
/// Подписывающий.
/// </summary>
public Company.IEmployee Signatory { get; set; }
/// <summary>
/// Основание полномочий подписывающего.
/// </summary>
public string SignatoryPowersBase { get; set; }
/// <summary>
/// Сотрудник, принявший груз.
/// </summary>
public Company.IEmployee Consignee { get; set; }
/// <summary>
/// Основание полномочий принявшего груз.
/// </summary>
public string ConsigneePowersBase { get; set; }
/// <summary>
/// Область полномочий (оформление, подписание, оформление и подписание).
/// </summary>
public string SignatoryPowers { get; set; }
/// <summary>
/// Доверенность.
/// </summary>
public IPowerOfAttorneyBase ConsigneePowerOfAttorney { get; set; }
/// <summary>
/// Другой документ.
/// </summary>
public string ConsigneeOtherReason { get; set; }
/// <summary>
/// Право подписи.
/// </summary>
public ISignatureSetting SignatureSetting { get; set; }
/* TODO Ждёт баги 44693
/// <summary>
/// Доверенность подписывающего.
/// </summary>
public Sungero.Docflow.Structures.AccountingDocumentBase.IAttorney Attorney { get; set; }
/// <summary>
/// Доверенность принявшего груз.
/// </summary>
public Sungero.Docflow.Structures.AccountingDocumentBase.IAttorney ConsigneeAttorney { get; set; }
*/
}
[PublicAttribute]
partial class SellerTitle
{
/// <summary>
/// Подписывающий.
/// </summary>
public Company.IEmployee Signatory { get; set; }
/// <summary>
/// Основание полномочий подписывающего.
/// </summary>
public string SignatoryPowersBase { get; set; }
/// <summary>
/// Область полномочий (оформление, подписание, оформление и подписание).
/// </summary>
public string SignatoryPowers { get; set; }
/// <summary>
/// Право подписи.
/// </summary>
public ISignatureSetting SignatureSetting { get; set; }
}
partial class GenerateTitleError
{
public string Type { get; set; }
public string Text { get; set; }
}
}