...
Document Status |
| ||||||
---|---|---|---|---|---|---|---|
Document Owner(s) | |||||||
Reviewers |
Business Problem
The RBIberia relates that recent analyses have highlighted a significant risk of fraud in home delivery orders that are paid for using physical payment methods (Cash, terminal at home, voucher physical).
...
Store this information in restaurant on Sanity;
Main local to store information about restaurant;
The information in Sanity is only ready-only, to change this information is only by DOP.
Manipulate this information on DOP (FZ-portal);
Create a new page with this information;
Create rules of access in this page, reference here;
The users can choose which rules they want to use;
The users can adjust the limit values to purchases in home delivery;
The users can make this to your restaurants;
The franchisees can change this information as well;
WL-app control the exhibition of physical payments;
With rules, the WL-App can validate if some rule is active and if need to hide physical payments;
This control is by each user;
In moment of payment the WL-app can get the information of the last delivery order of user (
getUserOrders
), and there are the restaurant information with the limitation rules, so we need to create a logic with this information and in case some limitation is true the physical payment is hidden.
For example, is the first purchase of user of home delivery type, we know this because thegetUserOrders
query return 0 order of this type, and the restaurant selected has a limitation that the first purchase need have a limit of $30.00, we know this because the restaurant return this information of Sanity, and we have the order value in this screen because there are the order with the total value at this moment. So with all this information, the WL-app is able to hide or not the physical payments
...