racespec Posted July 26, 2006 Share Posted July 26, 2006 Hey Guys I've successfully redone the TNT Road Expresss Module and will be submitting it as a contribution shortly. I am currently working on the TNT Overnight First Class Module, but am having issues with weights etc This is what i have come up with so far if ($shipping_weight < '3') { $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_TNTZIPZONESEXPRESS_TEXT_TITLE, 'methods' => array(array('id' => $this_code, 'title' => MODULE_SHIPPING_TNTZIPZONESEXPRESS_TEXT_DESCRIPTION, 'cost' => (($mincharge * MODULE_SHIPPING_TNTZIPZONESEXPRESS_FUEL)+ MODULE_SHIPPING_TNTZIPZONESEXPRESS_HANDLING)))); } if ($shipping_weight > '3') { $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_TNTZIPZONESEXPRESS_TEXT_TITLE, 'methods' => array(array('id' => $this_code, 'title' => MODULE_SHIPPING_TNTZIPZONESEXPRESS_TEXT_DESCRIPTION, 'cost' => (($ccharge * MODULE_SHIPPING_TNTZIPZONESEXPRESS_FUEL)+ MODULE_SHIPPING_TNTZIPZONESEXPRESS_HANDLING)))); } else { $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_TNTZIPZONESEXPRESS_TEXT_TITLE, 'methods' => array(array('id' => $this_code, 'title' => MODULE_SHIPPING_TNTZIPZONESEXPRESS_TEXT_DESCRIPTION, 'cost' => ((($cost * ($shipping_weight - 5) + $ccharge)* MODULE_SHIPPING_TNTZIPZONESEXPRESS_FUEL)+ MODULE_SHIPPING_TNTZIPZONESEXPRESS_HANDLING)))); I'm not 100% sure whether 2 if statements are allowed, as i dont know much about programming, so I am assuming 1 is taking over from the other. Any help or recommendations???? Thanks Tarek RACESPEC SALES TEAM Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.