2024-06-18 15:56:18 +04:00
|
|
|
|
using FishFactoryContracts.Attributes;
|
|
|
|
|
using FishFactoryDataModel.Enums;
|
2024-02-05 19:09:54 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace FishFactoryContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class OrderViewModel
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Номер")]
|
|
|
|
|
public int Id { get; set; }
|
2024-06-18 15:56:18 +04:00
|
|
|
|
|
|
|
|
|
[Column(visible: false)]
|
2024-05-06 22:32:01 +04:00
|
|
|
|
public int ClientId { get; set; }
|
2024-06-18 15:56:18 +04:00
|
|
|
|
[Column(title: "Клиент", width: 200)]
|
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
|
[Column(visible: false)]
|
2024-05-13 23:46:59 +04:00
|
|
|
|
public string ClientEmail { get; set; } = string.Empty;
|
2024-06-18 15:56:18 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int? ImplementerId { get; set; }
|
|
|
|
|
[Column(title: "Исполнитель", width: 200)]
|
|
|
|
|
public string? ImplementerFIO { get; set; } = null;
|
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int CannedId { get; set; }
|
|
|
|
|
[Column(title: "Консерва", width: 120, isUseAutoSize: true)]
|
|
|
|
|
public string CannedName { get; set; } = string.Empty;
|
|
|
|
|
[Column(title: "Количество", width: 100)]
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
[Column(title: "Сумма", width: 120)]
|
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
[Column(title: "Статус", width: 90)]
|
|
|
|
|
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
|
|
|
|
|
[Column(title: "Дата создания", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public DateTime DateCreate { get; set; } = DateTime.Now;
|
|
|
|
|
[Column(title: "Дата выполнения", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
|
|
|
public DateTime? DateImplement { get; set; }
|
2024-02-05 19:09:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|