ContractualDocumentBaseHandlers.cs
2.41 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
using System;
using System.Collections.Generic;
using System.Linq;
using Sungero.Core;
using Sungero.CoreEntities;
using Sungero.Docflow.ContractualDocumentBase;
namespace Sungero.Docflow
{
partial class ContractualDocumentBaseClientHandlers
{
public override void RegistrationNumberValueInput(Sungero.Presentation.StringValueInputEventArgs e)
{
base.RegistrationNumberValueInput(e);
this._obj.State.Properties.RegistrationNumber.HighlightColor = Sungero.Core.Colors.Empty;
}
public override void RegistrationDateValueInput(Sungero.Presentation.DateTimeValueInputEventArgs e)
{
base.RegistrationDateValueInput(e);
this._obj.State.Properties.RegistrationDate.HighlightColor = Sungero.Core.Colors.Empty;
}
public override void BusinessUnitValueInput(Sungero.Docflow.Client.OfficialDocumentBusinessUnitValueInputEventArgs e)
{
base.BusinessUnitValueInput(e);
this._obj.State.Properties.BusinessUnit.HighlightColor = Sungero.Core.Colors.Empty;
}
public override void OurSignatoryValueInput(Sungero.Docflow.Client.OfficialDocumentOurSignatoryValueInputEventArgs e)
{
base.OurSignatoryValueInput(e);
this._obj.State.Properties.OurSignatory.HighlightColor = Sungero.Core.Colors.Empty;
}
public virtual void CounterpartyValueInput(Sungero.Docflow.Client.ContractualDocumentBaseCounterpartyValueInputEventArgs e)
{
this._obj.State.Properties.Counterparty.HighlightColor = Sungero.Core.Colors.Empty;
}
public virtual void CounterpartySignatoryValueInput(Sungero.Docflow.Client.ContractualDocumentBaseCounterpartySignatoryValueInputEventArgs e)
{
this._obj.State.Properties.CounterpartySignatory.HighlightColor = Sungero.Core.Colors.Empty;
}
public virtual void TotalAmountValueInput(Sungero.Presentation.DoubleValueInputEventArgs e)
{
this._obj.State.Properties.TotalAmount.HighlightColor = Sungero.Core.Colors.Empty;
}
public virtual void CurrencyValueInput(Sungero.Docflow.Client.ContractualDocumentBaseCurrencyValueInputEventArgs e)
{
this._obj.State.Properties.Currency.HighlightColor = Sungero.Core.Colors.Empty;
}
public override void Closing(Sungero.Presentation.FormClosingEventArgs e)
{
base.Closing(e);
_obj.State.Properties.Subject.IsRequired = false;
_obj.State.Properties.Counterparty.IsRequired = false;
}
}
}