Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

krobinson

Archived
  • Posts

    51
  • Joined

  • Last visited

Profile Information

Recent Profile Visitors

2,636 profile views

krobinson's Achievements

  1. If the cost is not used, why is it added to the package table (package.package_cost)? I can't find it now, but I was certain I read somewhere that the package_cost did have some effect on the box used.... anyone have any information about this? Also, if you could help me pinpoint which part of the code specifies the smalles number of boxes - If I can remove it, that would at least get me going for now. Thanks, Kristine
  2. Another thing I was thinking about - At first I thought if I assigned the larger packaging a large cost it would use the lower cost package first. Maybe there is a simple code to say if a less expensive box is available us it? Just an idea - l really need the shipping nailed down asap. Thanks
  3. What about switching the fit into largest package, to fit in smallest package? That would at least get me going for now, while I work on the coding for the other. Is there a simple change to change that part?
  4. I entered a new post for this question - however I thought I might get more information here. Please forgive if it has been discussed before, I am not searching on the correct terms if it has. ;) After thinking about it, I thought the best option might be to assign products to certain packages. I am not sure how difficult that would be to merge into the current module... any ideas?? Thanks in advance!!
  5. It maybe better for me to just assign certain products to certain boxes. How difficult would that be to do?
  6. I am needing to change the algorithm that assigns products to boxes. I have mostly large items, that ship in large boxes - if not they are ready to ship. I am thinking my best option is to tell the algorithm to use the smallest box available - this way it does not use my oversize shipment boxes. But I am not really sure how to change it. I found the code I should change (i think) - but not sure what to change it to... so if anyone can help it will be greatly appreciated! function fitProductsInBox($productsRemaining, $emptyBox, $packedBoxesArray, $box_no, $index_of_largest_box) { $currentBox = $emptyBox; $productsRemainingSkipped = array(); $productsRemainingNotSkipped = array(); $largest_box_in_skipped_products = -1; // keep apart products that will not fit this box anyway for ($p = 0; $p < count($productsRemaining); $p++) { if ($productsRemaining[$p]['largest_box_it_will_fit'] < $box_no) { $productsRemainingSkipped[] = $productsRemaining[$p]; // check on skipped products: if they will not fit in the largest box // the $index_of_largest_box should be the one they *will* fit // otherwise the packing algorithm gets stuck in a loop if ($productsRemaining[$p]['largest_box_it_will_fit'] > $largest_box_in_skipped_products) { $largest_box_in_skipped_products = $productsRemaining[$p]['largest_box_it_will_fit']; } } else { $productsRemainingNotSkipped[] = $productsRemaining[$p]; } }
  7. I am also needing this shipping module. If anyone out there has one, please let us know. I did not find it listed in contributions. Thanks, Kristine
  8. You may want to try & update your SPPC. I installed mine less than a year ago & you have the option to set a customer group as tax exempt or not tax exempt. Thanks, Kristine
  9. I can't say for sure, but I installed Hide Products / Categories from Groups for SPPC (and Price Breaks) and haven't had any issues with slow time. Thanks, Kristine
  10. I actually deleted the cache file, for it to create another. That;s how the issue became apparent... The problem actually turned out that the permssions were somehow reset on the folder & nothing new could write to it. All better now!! Thanks, Kristine
  11. I am having this issue again. The last time it seemed to fix itself, but this time not at all. Is there something I should do to help it start reconizing? Please advise. Thanks, Kristine
  12. Thanks Jan - Could you give me an idea of what code allows the SPPC to default to retail? I will take a look and see if I can find it myself & start working on the fix. Hopefully it won't take me as long to fix the code as it will to add the price breaks on every customer for each product ;).
  13. Hey Jan ... or anyone who can help I have a question about the price break/SPPC. I want the retail price break to apply to all customers, unless I specify a different price break for that customer. I thought it did so automaticly, however for some reason it doesn't - or atleast mine isn't right now :blush: . Could you let me know if there is a quick edit to make it default to retail, unless a different price break is set? Many Thanks, Kristine
  14. Anyone out there know of something like this?
  15. Laffs... that wink smiley looks more like somone wacked it upside the head. I am also needing to setup a way for my clients to log back in & pay on the PO orders. I have seen it mentioned several times, but wanted to see if anyone had stumbled accross any contribution or at least a start, I will work to taylor it to my needs. I like/need the reporting function to... But I figure that'll be a quick report.... once I can get to it! Many thanks to the authors & support crew for this contribution. Thank you, Kristine
×
×
  • Create New...