Business problem
Several fees can be included in an order price, such as geographical, service, small cart and delivery. Currently, DMP only shows a delivery fee in the ticket it generates, calculated using the following formula:
DELIVERY_FEE = ORDER_TOTAL - SUM(ITEMS_IN_CART)
For the example above we have 17.57 - (8.99 + 2.99) = 5.59. These discrepancies between the tickets generated by DMP and the POS can confuse the restaurant when the workers compare them. This document analyses possible solutions for this problem.
Tech discovery
Architecture AS-IS
An order incoming to DMP can come from either whitelabel or a food aggregator (eg. Glovo, Uber Eats). Although created using different endpoints, both receive a list of fees included.
food aggregators: https://euw3-bk-partners.rbictg.com/docs/market/#tag/AggregatorOrderAPI/operation/aggregatorSubmitOrder
WL: https://euw3-bk-partners.rbictg.com/docs/market/#tag/OrderWebhook/operation/webhookOrdersPrice
For the food aggregator workflow we have the following sequence of events:
Known issues
Fulfillment service aggregating all fees into delivery fee
This is part of the first implementation that we can see here :const deliveryFees = input.charges?.fees?.reduce((acc, fee) => { if (fee.type === PartnerFeeType.DELIVERY_FEE) { acc = fee.total?.amount ?? 0; } return acc; }, 0);
DMP never receive the fees associated with the order
Although DMP calculates the delivery fee in the WL during the quote workflow, this information does not persist when the order is created. Besides that, no information regarding the other fees is received by it, as we can see in the create delivery webhook documentation.
Proposed solution
A simple solution is fixing the delivery fee in fulfillment calculation and altering the delivery integration to receive this information. Fixing the calculation is important since the fees returned for the POS will be used by them to create the delivery later (to be confirmed).
IMPORTANT CONSIDERATIONS:
The proposed solution assumes that the POS will send the fee breakdown, either on the commitOrder endpoint or the submitOrder. This was proposed by Winrest and the ground work is already laid off in partners API given the list of fees it receives.
The exact fee structure may change to include new fields in the near future, so this feature should be implemented after - IBFEC-1467Getting issue details... STATUS is done.
Although the POC focuses on aggregators, the changes will work for WL orders as well, since the create delivery process is the same.
Let’s split the solution into three steps:
Fix the fee calculation in the fulfillment service
Send fee information in partners service
Receive and persist fee information in DMP
Display fee breakdown in expeditor tablet, including printed tickets
Let’s dive into more details in each one:
1. Fix the fee calculation in fulfillment service
For the first problem, we’ll need to map all the possible received fees (including new values to come) into the fee fields of the RBI Order. Take delivery and service fees as examples:
intl-fulfillment-service/src/modules/channel-partner/channel-partner.service.ts
async submitOrder(data: IPartnerSubmitComittedOrder): Promise<PartnerOrderResponseDto> { ... const fees = input.charges?.fees ?? []; const formattedFees = { baseDeliveryFeeCents: fees.find(({ type }) => type === 'DELIVERY_FEE')?.total?.amount ?? 0, serviceFeeCents: fees.find(({ type }) => type === 'SERVICE_FEE')?.total?.amount ?? 0, }; ... const rbiOrder = await this.fulfillmentService.submitOrder({ cart: deliveryCart, delivery: { deliveryMode, dropoff: parsedDelivery, ...formattedFees }, externalReferenceId, rbiOrderStatus: input.rbiOrderStatus, status: input.partnerOrderStatus, }); }
For the code above, a request to /api/v1/channel-partner/orders?channel=bookingall
including the following fees:
{ "fees": [ { "type": "DELIVERY_FEE", "total": { "currency": "EUR", "amount": 200 } }, { "type": "SERVICE_FEE", "total": { "currency": "EUR", "amount": 250 } } ] }
Will create an order with the appropriate fees in DynamoDB:
2. Send fee information in partners service
In this step, it is necessary to include the new fee structure in the create delivery payload and format the values received to the currency format.
intl-partners-service/src/modules/webhooks/interfaces/webhook-delivery.interface.ts
export interface IFees { deliveryFee: IPrice; serviceFee: IPrice; } export interface IWebhookCreateDelivery { ... fees: IFees; }
intl-partners-service/src/modules/delivery/delivery.service.ts
Altering this request will change the payload sent to all delivery providers used by international. If any of them have servers configured in strict mode, the integration could break. Ideally, we can use LaunchDarkly to configure which integrations will receive the new field.
public async createDelivery(input: CreateDeliveryRequestDto): Promise<CreateDeliveryResponseDto> { ... const mapRbiFees = (fees: FeesDto | undefined) => { return { deliveryFee: mapToMoney(fees?.baseDeliveryFee, IsoCountryCode2Char.ES), serviceFee: mapToMoney(fees?.serviceFee, IsoCountryCode2Char.ES), }; }; const payload: IWebhookCreateDelivery = { callbackUrl: `https://${partnersApi.host}/api/${partnersApi.version}/delivery/create/callback`, ... fees: mapRbiFees(input.fees), }; }
After configuring the webhook to hit a local Mockoon server, I could confirm the new fees would indeed be sent to the delivery provider:
3. Receive and persist fee information in DMP
The create delivery request sent by partners-service is received by DMP /orders endpoint, which creates an OrderResponseDTO object in Dynamo DB. First, we need to include the fee field in the three relevant DTOs: OrderResponseDto
, DeliveryWebhookRbiDto
and DeliveryWebhookDto
.
intl-partners-delivery/src/modules/orders/dto/order-response.dto.ts
intl-partners-delivery/src/modules/orders/dto/delivery-webhook.dto.ts
intl-partners-delivery/src/modules/orders/dto/delivery-webhook-rbi.dto.ts
export class FeesDto { @Type(() => Amount) @ValidateNested() @IsObject() @ApiProperty({ description: 'Delivery fee charged in the order', type: Amount }) deliveryFee: Amount; @Type(() => Amount) @ValidateNested() @IsObject() @ApiProperty({ description: 'Service fee charged in the order', type: Amount }) serviceFee: Amount; } export class OrderResponseDto { ... @ApiProperty({ description: 'Fees charged in the order', type: FeesDto }) fees?: FeesDto; } export class DeliveryWebhookRbiDto { ... @ApiProperty({ description: 'Fees charged in the order', type: FeesDto }) fees?: FeesDto; } export class DeliveryWebhookDto { ... @ApiProperty({ description: 'Fees charged in the order', type: FeesDto }) fees?: FeesDto; }
After the above is done, it’s a matter of adjusting the relevant formatter methods used by the webhook.
async webhookCreateOrder(...) { ... const body: DeliveryWebhookDto = { ... fees: payload.fees, }; } private async formatOrderFromWebhook(...) { return { ... fees: body.fees, } }
And now the orders are created in dynamo with the fee information:
4. Display fee breakdown in expeditor tablet, including printed tickets
We’ll have to align with the UI/UX team to find the best way to display the new information, but as long as the backend is returning it, the expeditor tablet has only to adjust the Order interface and create the new react components responsible for showing the fees.
Task breakdown
[intl-fulfillment-service]
Adjust fee calculation to stop aggregating all fees into delivery
[intl-partners-service]
Update crete delivery to send the fee information
[intl-partners-delivery]
Update create delivery webhook to receive the fee information
Create/update e2e order tests to include the new scenario
[intl-expeditor-tablet]
Display fee breakdown in order detail
remove the old delivery fee calculation code
Validate if the order ticket is printed with the fees
Create/update e2e order tests to include the new scenario
Add Comment