Wonky.Client/Wonky.Entity/Views/ReportItemView.cs
Frede Hundewadt fe8950579f build v.314
reorder activity header
add property salesRepName to activity header
code cleanup
2023-12-01 10:17:19 +01:00

50 lines
No EOL
2.2 KiB
C#

// Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
//
using System.Collections.Generic;
namespace Wonky.Entity.Views;
public class ReportItemView
{
public ReportItemCustomer Company { get; set; } = new();
public List<ReportItemLine> Lines { get; set; } = new();
public string ActivityId { get; set; } = "";
public bool Closed { get; set; }
public string CreatedBy { get; set; } = "";
public string CreateTimestamp { get; set; } = "";
public string CrmNote { get; set; } = "";
public string Demo { get; set; } = "";
public string DlvAddress1 { get; set; } = "";
public string DlvAddress2 { get; set; } = "";
public string DlvName { get; set; } = "";
public string DlvZipCity { get; set; } = "";
public string ESalesNumber { get; set; } = "";
public bool Express { get; set; }
public string OfficeNote { get; set; } = "";
public decimal OrderAmount { get; set; }
public string OrderDate { get; set; } = "";
public string OurRef { get; set; } = "";
public string ProcessStatusEnum { get; set; } = "";
public string QuoteStatusEnum { get; set; } = "";
public string ReferenceNumber { get; set; } = "";
public string Sales { get; set; } = "";
public string SalesRepId { get; set; } = "";
public string SalesRep { get; set; } = "";
public decimal SasAmount { get; set; }
public string StatusTypeEnum { get; set; } = "";
public string VisitTypeEnum { get; set; } = "";
public string YourRef { get; set; } = "";
}