Guest Posted October 21, 2007 Share Posted October 21, 2007 what can i do? i have items that are over $50,000 and it reports an error that UPS wont insure more.. is there some type of limit that could be programmed into it? example. someone buys a $70,000 item, charges them up to $50k insurance.. then lets me figure out what i'm gonna do with the method i will use to ship the item... i dont know why i can't clearly say anything right now, i hope someone understands me lol thanks in advance Quote Link to comment Share on other sites More sharing options...
Jan Zonjee Posted October 22, 2007 Share Posted October 22, 2007 what can i do? i have items that are over $50,000 and it reports an error that UPS wont insure more.. is there some type of limit that could be programmed into it? I think this should work. Change the bit around line 85 in modules/shipping/upsxml.php from // insurance addition if (MODULE_SHIPPING_UPSXML_INSURE == 'False') { $this->pkgvalue = 100; } if (MODULE_SHIPPING_UPSXML_INSURE == 'True') { $this->pkgvalue = ceil($order->info['subtotal']); } to: // insurance addition if (MODULE_SHIPPING_UPSXML_INSURE == 'False') { $this->pkgvalue = 100; } if (MODULE_SHIPPING_UPSXML_INSURE == 'True') { if (ceil($order->info['subtotal']) > 50000) { $this->pkgvalue = 50000; } else { $this->pkgvalue = ceil($order->info['subtotal']); } } // end if (MODULE_SHIPPING_UPSXML_INSURE == 'True') and the total value of the shipment will never be reported higher than $ 50,000. 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.