Advertisement
dreambigmedia12

Untitled

Jan 28th, 2020
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. MARKUP_RATIO= 15
  2. OUR SYSTEM QUOTE SHOWS 800 IS THE COST
  3. CUSTOMER PRICE 920 = 800( Price we believe the driver will acceept at ,this comes our quote database ) + MARKUP_RATIO * 800
  4.  
  5. if(customer_selected == 'DOWNPAYMENT'):
  6. Customer decides they do not want to pay the whole price up front, but rather a deposit upfront and the rest on delivery.
  7. This is now considerd a COD Order ( Cash on Delivery 0rder)
  8. The MARKUP_RATIO will be taken as an NMI Transaction and added to the Invoice.
  9.  
  10. Carrier balance = 800.
  11. Carrier Price = 800 ( based off our quote)
  12. Customer Balance = 800 (They've already paid us $120 as a deposit ) 920 - 120 = 800
  13. Customer Price = 920 = the original price.
  14.  
  15. Not let's assume the Carrier actually agrees to do it for less, let's say they say we'll do it for $600 instead of $800 we can simply adjust the
  16. Carrier Balance to $600
  17. Set Carrier Price at $600
  18. Customer Balance = 800 (They've already paid us $120 as a deposit ) 920 - 120 = 800
  19. The Customer balance will be $800 still , but now we can just charge $600 on delivery and charge the $200 extra profit on the vaulted NMI token once the shipment has been completed.
  20.  
  21. Customer Price = 920 = the original price.
  22.  
  23.  
  24. if(customer_selected=='FULLPAYMENT'):
  25. MARKUP_RATIO= 15
  26. OUR SYSTEM QUOTE SHOWS 800 IS THE COST
  27. CUSTOMER PRICE 920 = 800( Price we believe the driver will acceept at ,this comes our quote database ) + MARKUP_RATIO * 800
  28. Customer Balance = 0 ( They have paid us in full through a single NMI Transaction)
  29. Customer Price = 920
  30. Carrier balance = 800 We owe the driver $800 at this point.
  31. Carrier Price = 800
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement