Skip to content

Commit

Permalink
NTR: fix #766
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalij Mik committed Jun 27, 2024
1 parent 68dc57e commit 3288d61
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,10 @@ Component.override('sw-order-line-items-grid', {
return itemShippingStatus.quantityShipped;
},
canceledQuantity(item){

if(this.cancelStatus === undefined || this.cancelStatus === null){
return '~';
}
const itemStatus = this.cancelStatus[item.id];
if(itemStatus === undefined || itemStatus === null){
return '~';
Expand Down

0 comments on commit 3288d61

Please sign in to comment.