Any value in the markup field wasn't being added to the quoted shipping cost.

In includes/modules/shipping/canpar.php

Find around line 96:
'cost' => $ShippingCost)));

Replace with:
'cost' => $ShippingCost + $this->mark_up)));



More...