Skip to content

Commit

Permalink
GUARD-702: added extra field to order model to correctly handle shipm…
Browse files Browse the repository at this point in the history
…ents splitting;
  • Loading branch information
fabulaspb committed Jul 22, 2020
1 parent 444b814 commit 1783aac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Global/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
// [assembly: AssemblyVersion("1.0.*")]

// Keep in track with CA API version
[ assembly : AssemblyVersion( "1.4.0.0" ) ]
[ assembly : AssemblyVersion( "1.4.1.0" ) ]
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ [ DataMember( Name = "mergedOrSplit" ) ]
[ DataMember( Name = "mergedIds" ) ]
public IList< long > MergedIds{ get; set; }

[ DataMember( Name = "parentId" ) ]
public long? ParentId { get; set; }

[ DataMember( Name = "billToParty" ) ]
public string BillToParty{ get; set; }

Expand Down

0 comments on commit 1783aac

Please sign in to comment.