Skip to content

Commit

Permalink
ECWID-135200 Recurring subscription orders are created without Tax ID…
Browse files Browse the repository at this point in the history
… although it's presented in the initial order - changed customerFiscalCode default value to empty string (as in ApiOrder) in FetchedOrder and UpdatedOrder
  • Loading branch information
renat-ayzyatullen committed May 24, 2024
1 parent 56e7cdc commit e5aaa6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ data class UpdatedOrder(
val orderExtraFields: List<OrderExtraFields>? = null,
val paymentReference: String? = null,
val loyalty: Loyalty? = null,
val customerFiscalCode: String? = null,
val customerFiscalCode: String? = "",

) : ApiUpdatedDTO {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ data class FetchedOrder(
val paymentReference: String? = null,
val shippingLabelAvailableForShipment: Boolean = false,
val loyalty: Loyalty? = null,
val customerFiscalCode: String? = null,
val customerFiscalCode: String? = "",

) : ApiFetchedDTO {

Expand Down

0 comments on commit e5aaa6e

Please sign in to comment.