2024-05-06 00:02:04 +04:00
|
|
|
|
using GarmentFactoryContracts.Attributes;
|
|
|
|
|
using GarmentFactoryDataModels.Enums;
|
2024-03-06 09:21:43 +04:00
|
|
|
|
using GarmentFactoryDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace GarmentFactoryContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class OrderViewModel : IOrderModel
|
|
|
|
|
{
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Номер", width: 60)]
|
2024-03-06 09:21:43 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(visible: false)]
|
|
|
|
|
public int ClientId { get; set; }
|
2024-04-11 13:43:22 +04:00
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Имя клиента", width: 200)]
|
2024-04-11 13:43:22 +04:00
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-04-17 10:42:00 +04:00
|
|
|
|
public int? ImplementerId { get; set; }
|
2024-05-06 00:02:04 +04:00
|
|
|
|
|
|
|
|
|
[Column(title: "Исполнитель", width: 200)]
|
2024-04-17 10:42:00 +04:00
|
|
|
|
public string? ImplementerFIO { get; set; } = null;
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-04-17 10:42:00 +04:00
|
|
|
|
public int TextileId { get; set; }
|
2024-03-06 09:21:43 +04:00
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Текстиль", width: 120, isUseAutoSize: true)]
|
2024-03-06 09:21:43 +04:00
|
|
|
|
public string TextileName { get; set; } = string.Empty;
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Количество", width: 100)]
|
2024-03-06 09:21:43 +04:00
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Сумма", width: 120)]
|
2024-03-06 09:21:43 +04:00
|
|
|
|
public double Sum { get; set; }
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Статус", width: 90)]
|
2024-03-06 09:21:43 +04:00
|
|
|
|
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Дата создания", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-03-06 09:21:43 +04:00
|
|
|
|
public DateTime DateCreate { get; set; } = DateTime.Now;
|
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(title: "Дата выполнения", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
2024-03-06 09:21:43 +04:00
|
|
|
|
public DateTime? DateComplete { get; set; }
|
2024-05-05 18:46:39 +04:00
|
|
|
|
|
2024-05-06 00:02:04 +04:00
|
|
|
|
[Column(visible: false)]
|
2024-05-05 18:46:39 +04:00
|
|
|
|
public string ClientEmail { get; set; } = string.Empty;
|
|
|
|
|
}
|
2024-03-06 09:21:43 +04:00
|
|
|
|
}
|