Closed jhoule86 closed 4 years ago
Fix https://github.com/wayfair-contribs/plentymarkets-plugin/issues/140 by making Stock Buffer and Default Order Status settings optional to the plugin's user.
Stock Buffer
Default Order Status
Fix https://github.com/wayfair-contribs/plentymarkets-plugin/issues/142 by casting Default Order Status to float instead of int.
float
int
Fix https://github.com/wayfair-contribs/plentymarkets-plugin/issues/143 by checking incoming Default Order Status values against the Plentymarkets system by using OrderStatusRepositoryContract.
OrderStatusRepositoryContract
Make the KeyValueRepository's putOrReplace method handle nulls correctly by avoiding saving new entries for null and/or by deleting old entries when someone attempts to set a value to null.
KeyValueRepository
putOrReplace
going to replace this with a version that displays the order statuses in the UI
Fix https://github.com/wayfair-contribs/plentymarkets-plugin/issues/140 by making
Stock Buffer
andDefault Order Status
settings optional to the plugin's user.Fix https://github.com/wayfair-contribs/plentymarkets-plugin/issues/142 by casting
Default Order Status
tofloat
instead ofint
.Fix https://github.com/wayfair-contribs/plentymarkets-plugin/issues/143 by checking incoming
Default Order Status
values against the Plentymarkets system by usingOrderStatusRepositoryContract
.Make the
KeyValueRepository
'sputOrReplace
method handle nulls correctly by avoiding saving new entries for null and/or by deleting old entries when someone attempts to set a value to null.