/**
  * Replace decimal point with a dash to comply with Amazon's restrictions on
  * seller reference ID format.
  */
 public function generateOrderID($dataObj = null)
 {
     $dotted = parent::generateOrderID($dataObj);
     return str_replace('.', '-', $dotted);
 }