Skip to content

Commit

Permalink
Fix lineItem.comment Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarincev committed Mar 3, 2017
1 parent 58bdd28 commit 0f06603
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion VirtoCommerce.OrderModule.Data/Model/LineItemEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ public virtual void Patch(LineItemEntity target)
target.TaxType = this.TaxType;
target.IsCancelled = this.IsCancelled;
target.CancelledDate = this.CancelledDate;
target.CancelReason = this.CancelReason;
target.CancelReason = this.CancelReason;
target.Comment = this.Comment;

if (!this.Discounts.IsNullCollection())
{
Expand Down

0 comments on commit 0f06603

Please sign in to comment.