This commit is contained in:
Курнат Андрей
2026-03-23 21:24:09 +03:00
parent bf9f54f91c
commit 74d793948e
471 changed files with 6560 additions and 22 deletions

View File

@@ -204,6 +204,7 @@ namespace XLAB2
public sealed class PsvDocumentLine : ObservableObject
{
private bool _isBatchSelected;
private string _notes;
public int CardId { get; set; }
@@ -257,7 +258,23 @@ namespace XLAB2
public string RejectionReason { get; set; }
public string Notes { get; set; }
public string Notes
{
get { return _notes; }
set
{
if (SetProperty(ref _notes, value))
{
OnPropertyChanged("Completeness");
}
}
}
public string Completeness
{
get { return Notes; }
set { Notes = value; }
}
public bool IsPendingInsert { get; set; }