[Date Prev][Date Next][Thread Prev][Thread Next][Minivend by date
][Minivend by thread
]
Re: [mv] Shipping Lookup
****** message to minivend-users from "kyle@invisio.com" <kyle@invisio.com> ******
To get each shipping cost, why not simply:
(mv 3.12 basically from the simple checkout page...)
<p>Choose your shipping method</p>
<SELECT MV=loop
MV.SEARCH="fi=country.asc/se=[default country US]/sf=selector/rf=shipmodes"
MV.OPTION="mv_shipmode"
NAME="mv_shipmode">
<OPTION VALUE="[loop-code]"> [shipping-desc [loop-code]] [shipping
[loop-code]]
</SELECT>
Kyle (KC)
PS if [raw_subtotal] truly returns $125.00 (with the dollar sign, then that
is your problem)
so you could try [raw_subtotal noformat=1] (not tested)
At 07:15 PM 11/22/00 , you wrote:
>****** message to minivend-users from Victor Nolton <ven@pragakhan.com>
> ******
>
>
>God you are sick.. Okay, no I am jealous :)
>
>I will attempt to implement this. It does look 90% foreign to me though.
>
>What is odd is, I was doing it this way.
>
>[raw_subtotal] would return $125.00 (which was correct).
>
>so I would put.
>[currency][calc][raw_subtotal]*.10[/calc][/currency]
>
>It returns $0.00
>the one shipping method is 10% of the total, another one is 15% and
>one is 30%. but also there is a minimum amount. Just odd it doesn't
>work :(
>
>Ven
>
>>****** message to minivend-users from cfm@maine.com ******
>>
>>On Wed, Nov 22, 2000 at 07:25:14AM -0500, Victor Nolton wrote:
>>> ****** message to minivend-users from Victor Nolton
>>><ven@pragakhan.com> ******
>>>
>>> Been looking through the archives for help on this one.
>>>
>>> I have setup a page about shipping charges the company charges.
>>>
>>> I have setup the page to look and see if there are items in the cart
>>> if there is, it prints more info. In the info I'd like it to take the
>>> subtotal and run it through the shipping routine.
>>>
>>> For instance I'd like it to show the current cost of shipping for
>>> USPS First Class, USPS Priority Mail, USPS Express Mail.
>>>
>>> Is there a way to do this with Minivend 4 or even Minivend 3?
>>>
>>
>>Interesting, I've not done that.
>>
>>You could use that same trick you have for the subtotal, save the
>>shipping mode, set it to each of those and display it in order, then
>>reset it.
>>
>>It would be a lot easier to do it in perl calling this
>>from Interpolate.pm to iterate the options:
>>
>>sub tag_shipping {
>> my($mode, $opt) = @_;
>> $opt = { noformat => 1, convert => 1 } unless $opt;
>> $Ship_its = 0;
>> if(! $mode) {
>> $mode = $opt->{handling}
>> ? ($::Values->{mv_handling})
>>
>>
>>
>>Schematically something like
>>
>>{
>> my(@OUT);
>> for ('USPS First Class','USPS Priority Mail','USPS Express Mail')
>>{ # use abbrv names
>> push @OUT,&Interpolate::tag_shipping($_);
>> }
>> return "@OUT";
>>}
>>
>>Doesn't even look like you need to reset anything; mode overrides
>>what is set.
>>
>>--
>>
>>Christopher F. Miller, Publisher cfm@maine.com
>>MaineStreet Communications, Inc 208 Portland Road, Gray, ME 04039
>>1.207.657.5078 http://www.maine.com/
>>Database publishing, e-commerce, office/internet integration, Debian linux.
>>-
>>To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
>>email with 'UNSUBSCRIBE minivend-users' in the body to
Majordomo@minivend.com.
>>Archive of past messages: http://www.minivend.com/minivend/minivend-list
>
>
>http://www.vensnews.com
>
>Victor "Ven" Nolton __________________________ http://www.VensNews.com
>http://PragaKhan.com http://LordsofAcid.com http://DarlingNikkie.com
>
> All HTML Encoded email will be ignored. Learn Standards.
>-
>To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
>email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
>Archive of past messages: http://www.minivend.com/minivend/minivend-list
-
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list