File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Modules/Sources/Yosemite/PointOfSale/OrderList
WooCommerce/Classes/POS/Presentation/Orders Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ import Foundation
33public struct POSOrderItem : Equatable , Hashable {
44 public let itemID : Int64
55 public let name : String
6+ // periphery:ignore - Will be used for images
67 public let productID : Int64
8+ // periphery:ignore - Will be used for images
79 public let variationID : Int64
810 public let quantity : Decimal
911 public let formattedPrice : String
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ private extension PointOfSaleOrderDetailsView {
133133
134134 func imageSource( for item: POSOrderItem ) -> String ? {
135135 // TODO: Will be addressed in the following PR
136- return " \( item . productID - item . variationID ) "
136+ return nil
137137 }
138138
139139 @ViewBuilder
You can’t perform that action at this time.
0 commit comments