Skip to content

Commit

Permalink
#9956 Add Positionskomm to BelegPositionDruckDTO
Browse files Browse the repository at this point in the history
  • Loading branch information
gdl-drw committed Aug 17, 2023
1 parent 9f11009 commit a302f51
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gandalan.IDAS.WebApi.Client/DTOs/Belege/BelegDruckDTO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ public BelegSaldoDruckDTO(BelegSaldoDTO saldo)

public class BelegPositionDruckDTO
{
public string PositionsKommission { get; set; }
public int LaufendeNummer { get; set; }
public string ArtikelNummer { get; set; }
public string Variante { get; set; }
Expand Down Expand Up @@ -306,6 +307,7 @@ public BelegPositionDruckDTO(BelegPositionDTO position, bool preiseAnzeigen = tr
CultureInfo culture = new CultureInfo("de-de");
if (position != null)
{
this.PositionsKommission = position.PositionsKommission;
this.LaufendeNummer = position.LaufendeNummer;
this.ArtikelNummer = position.ArtikelNummer;
this.Variante = position.Variante;
Expand Down

0 comments on commit a302f51

Please sign in to comment.