Warehouses #1

Merged
trent merged 159 commits from Warehouses into master 2026-01-10 20:24:17 +00:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit f6deaa3da0 - Show all commits

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using AutoMapper.Configuration.Annotations;
namespace SytelineSaAppEfDataModel.Dtos namespace SytelineSaAppEfDataModel.Dtos
{ {
@@ -41,6 +42,8 @@ namespace SytelineSaAppEfDataModel.Dtos
public string TranslatedStatus => TranslateStatus(Status); public string TranslatedStatus => TranslateStatus(Status);
[Ignore] public string VatCode { get; set; }
public IEnumerable<EdiCustomerOrderLineItemDto> EdiCustomerOrderLineItems { get; set; } public IEnumerable<EdiCustomerOrderLineItemDto> EdiCustomerOrderLineItems { get; set; }
} }
} }

View File

@@ -102,8 +102,8 @@ namespace SytelineSaAppEfDataModel.Dtos
public string UfFkrEdiPlaceOrPortDischarge { get; set; } public string UfFkrEdiPlaceOrPortDischarge { get; set; }
public string? RoutingCode { get; set; } public string? RoutingCode { get; set; }
public string? DeliveryCallNumber { get; set; } public string? DeliveryCallNumber { get; set; }
public string UnloadingPoint { get; set; } public string? UnloadingPoint { get; set; }
public string DestinationPoint { get; set; } public string? DestinationPoint { get; set; }
public string NewStatus { get; set; } public string NewStatus { get; set; }
public string PalletCode { get; set; } public string PalletCode { get; set; }
public string PalletNumber { get; set; } public string PalletNumber { get; set; }