Amazon toggle logic
Current logic -
Fulfilled by Amazon:
Toggle On: Show if locationId is present and enrollmentStatus is not "pending".
Toggle Off: Show if enrollmentStatus is "archived_requested" and locationId is empty.
Fulfilled by Merchant:
Toggle On: Show if mfnlocationId within otherDetails is present and enrollmentStatus is not "pending".
Toggle Off: Show if otherDetails is an empty string and warehouseId is not provided.
But we want to save the location in DB as we need to send 0 inventory updates.
We updated the logic as below -
Fulfilled by Amazon:
Toggle On: Show if enrollmentStatus is "ACTIVE".
Toggle Off: Show if enrollmentStatus is not "ACTIVE".
Fulfilled by Merchant:
Toggle On: Show if enrollmentStatus within otherDetails is present and enrollmentStatus is “ACTIVE".
Toggle Off: Show if enrollmentStatus within otherDetails is not “ACTIVE“.
The issue here is if the mfn location is activated, the toggle is shown turned on for FBA location as well.
Expected behaviour -
The toggle is to be shown correct on workspace without having to delete the location ids in the backend.
Current behaviour -
The toggle is to be shown correct on workspace but we have to delete location ids in backend.