[TYPO3-commerce] [WebPoint Support Ticket #21487] AutoReply: TYPO3-project-commerce Digest, Vol 3, Issue 7

typo3-project-commerce@lists.netfielders.de support at webpoint.at
Fri Apr 6 12:01:47 CEST 2007


Vielen Dank fuer Ihre E-Mail!

Diese E-Mail wurde automatisch generiert um Ihnen den Empfang Ihrer E-Mail mit dem nachfolgenden Betreff zu bestaetigen:

    "TYPO3-project-commerce Digest, Vol 3, Issue 7"

Sie brauchen auf diese E-Mail NICHT zu reagieren.
Ihre Anfrage hat eine Ticket-Nummer bekommen [WebPoint Support Ticket #21487].

There is no need to reply to this message right now.  Your ticket has been
assigned an ID of [WebPoint Support Ticket #21487].

Please include the string:

         [WebPoint Support Ticket #21487]

in the subject line of all future correspondence about this issue. To do so, 
you may reply to this message.

                        Thank you,
                        support at webpoint.at

-------------------------------------------------------------------------
Send TYPO3-project-commerce mailing list submissions to
	typo3-project-commerce at lists.netfielders.de

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

or, via email, send a message with subject or body 'help' to
	typo3-project-commerce-request at lists.netfielders.de

You can reach the person managing the list at
	typo3-project-commerce-owner at lists.netfielders.de

When replying, please edit your Subject line so it is more specific
than "Re: Contents of TYPO3-project-commerce digest..."


Today's Topics:

   1. [WebPoint Support Ticket #21442] AutoReply:
      TYPO3-project-commerce Digest, Vol 3, Issue 6
      (typo3-project-commerce at lists.netfielders.de)
   2. usermail aus html email (Sebastian Schwill)
   3. delivery costs for different usergroups and	different taxes
      (Sebastian Schwill)
   4. Re: usermail aus html email (Ingo Schmitt)
   5. Re: delivery costs for different usergroups and different
      taxes (Ingo Schmitt)


----------------------------------------------------------------------

Message: 1
Date: Thu, 5 Apr 2007 12:01:52 +0200
From: "typo3-project-commerce at lists.netfielders.de"
	<support at webpoint.at>
Subject: [TYPO3-commerce] [WebPoint Support Ticket #21442] AutoReply:
	TYPO3-project-commerce Digest, Vol 3, Issue 6
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.120214.1175767368.21067.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset="utf-8"

Vielen Dank fuer Ihre E-Mail!

Diese E-Mail wurde automatisch generiert um Ihnen den Empfang Ihrer E-Mail mit dem nachfolgenden Betreff zu bestaetigen:

    "TYPO3-project-commerce Digest, Vol 3, Issue 6"

Sie brauchen auf diese E-Mail NICHT zu reagieren.
Ihre Anfrage hat eine Ticket-Nummer bekommen [WebPoint Support Ticket #21442].

There is no need to reply to this message right now.  Your ticket has been
assigned an ID of [WebPoint Support Ticket #21442].

Please include the string:

         [WebPoint Support Ticket #21442]

in the subject line of all future correspondence about this issue. To do so, 
you may reply to this message.

                        Thank you,
                        support at webpoint.at

-------------------------------------------------------------------------
Send TYPO3-project-commerce mailing list submissions to
	typo3-project-commerce at lists.netfielders.de

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

or, via email, send a message with subject or body 'help' to
	typo3-project-commerce-request at lists.netfielders.de

You can reach the person managing the list at
	typo3-project-commerce-owner at lists.netfielders.de

When replying, please edit your Subject line so it is more specific
than "Re: Contents of TYPO3-project-commerce digest..."


Today's Topics:

   1.  New Hook in tx_commerce_pi2 (Luc Muller)
   2. Re: New Hook in tx_commerce_pi2 (Ingo Schmitt)
   3.  Commerce in TER availiable (Ingo Schmitt)
   4. Re: Commerce in TER availiable (Roger Bunyan)
   5.  Commerce and Invoice Module (Luc Muller)
   6. Re: Commerce and Invoice Module (Volker Graubaum)
   7. Re: Commerce and Invoice Module (Luc Muller)


----------------------------------------------------------------------

Message: 1
Date: Wed, 4 Apr 2007 14:29:55 +0200
From: "Luc Muller" <l.mul-nospam-ler at ameos.com>
Subject: [TYPO3-commerce]  New Hook in tx_commerce_pi2
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175689930.25412.typo3-project-commerce at lists.netfielders.de>
	

For some purpose I added a hook to handled the delivery article in the 
basket.

I needed this hook for this purpose :
I Link each article to one delivery article.
On the basket page I have to set the delivery article to the most expensive 
delivery article that is liked to one "normal" article in the basket.

the only hook available in delivery handling were after the select box was 
changed, but I hook the display to only display my chosen article.

Well, here it goes for the hook

in method : handleBasket() (approx line 172)

just before if($this->piVars['delArt']){ (approx line 270)

add this hook :

  $hookObjectsArr = array();
   if (is_array 
($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['commerce/pi2/class.tx_commerce_pi2.php']['prevdelArt'])) 
{
     foreach 
($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['commerce/pi2/class.tx_commerce_pi2.php']['prevdelArt'] 
as $classRef) {
      $hookObjectsArr[] = &t3lib_div::getUserObj($classRef);
     }
   }
   foreach($hookObjectsArr as $hookObj) {
    if (method_exists($hookObj, 'prevdelArt')) {
     $this->basket = $hookObj->prevdelArt($this->basket,$this);
     }
   }

I call it prevdelArt for previous delivery article

in the test : if($this->piVars['delArt']){ you got a hook called postdelart 
that allow you to inpact the delivery article after it has been changed. 




------------------------------

Message: 2
Date: Wed, 04 Apr 2007 16:18:33 +0200
From: Ingo Schmitt <mailinglisten at i-schmitt.de>
Subject: Re: [TYPO3-commerce] New Hook in tx_commerce_pi2
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175696313.15853.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=us-ascii; format=flowed

Hi Luc,
> For some purpose I added a hook to handled the delivery article in the 
> basket.
> 
> I needed this hook for this purpose :
> I Link each article to one delivery article.
> On the basket page I have to set the delivery article to the most expensive 
> delivery article that is liked to one "normal" article in the basket.
> 
> the only hook available in delivery handling were after the select box was 
> changed, but I hook the display to only display my chosen article.
> 
> Well, here it goes for the hook
> 
> in method : handleBasket() (approx line 172)
> 
> just before if($this->piVars['delArt']){ (approx line 270)
> 
> add this hook :
> 
>   $hookObjectsArr = array();
>    if (is_array 
> ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['commerce/pi2/class.tx_commerce_pi2.php']['prevdelArt'])) 
> {
>      foreach 
> ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['commerce/pi2/class.tx_commerce_pi2.php']['prevdelArt'] 
> as $classRef) {
>       $hookObjectsArr[] = &t3lib_div::getUserObj($classRef);
>      }
>    }
>    foreach($hookObjectsArr as $hookObj) {
>     if (method_exists($hookObj, 'prevdelArt')) {
>      $this->basket = $hookObj->prevdelArt($this->basket,$this);
>      }
>    }
> 
> I call it prevdelArt for previous delivery article
> 
> in the test : if($this->piVars['delArt']){ you got a hook called postdelart 
> that allow you to inpact the delivery article after it has been changed. 
> 
> 

The hook is fine with me. Could you send a patch to 
team(-at-)typo3-commerce.org


Thank you

ingo
Mit freundlichen Gruessen
-- 
Ingo Schmitt                        mailto:is at marketing-factory.de
Marketing Factory Consulting GmbH   http://typo3.marketing-factory.de/
Content Management mit Typo3: Beratung - Schulung - Realisierung


------------------------------

Message: 3
Date: Wed, 04 Apr 2007 16:19:17 +0200
From: Ingo Schmitt <mailinglisten at i-schmitt.de>
Subject: [TYPO3-commerce]  Commerce in TER availiable
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175696357.15853.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=us-ascii; format=flowed

Hi,

commerce is TER availiable:

http://typo3.org/extensions/repository/view/commerce/0.9.0/


ingo


Mit freundlichen Gruessen
-- 
Ingo Schmitt                        mailto:is at marketing-factory.de
Marketing Factory Consulting GmbH   http://typo3.marketing-factory.de/
Content Management mit Typo3: Beratung - Schulung - Realisierung


------------------------------

Message: 4
Date: Thu, 05 Apr 2007 08:39:29 +1000
From: Roger Bunyan <roger at redgumsoaps.com.au>
Subject: Re: [TYPO3-commerce] Commerce in TER availiable
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175726374.31089.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Congradulations Ingo and all the team

great work, thanks for your efforts


-- 
Roger Bunyan
Redgum Soaps http://redgumsoaps.com.au
Sustainability will be achieved by a
cultural change, not by technology.


------------------------------

Message: 5
Date: Thu, 5 Apr 2007 10:44:37 +0200
From: "Luc Muller" <l.mul-nospam-ler at ameos.com>
Subject: [TYPO3-commerce]  Commerce and Invoice Module
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175762812.27498.typo3-project-commerce at lists.netfielders.de>
	

Does anyone here uses the Invoice module (pi6) in commerce ?

I need to display the invoice after someone has chosen the invoice payment, 
but the checkout doesn't redirect to the page Invoice.
How Can I achieve this ? Should I hook the checkout (pi3) right before the 
end in order to redirect to the order page ?
Is there something to do inside the payment_invoice lib ?

Thx for help :) 




------------------------------

Message: 6
Date: Thu, 05 Apr 2007 11:19:04 +0200
From: Volker Graubaum <vg_typo3 at e-netconsulting.de>
Subject: Re: [TYPO3-commerce] Commerce and Invoice Module
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175764746.1773.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=ISO-8859-15; format=flowed

Hi Luc,

> Does anyone here uses the Invoice module (pi6) in commerce ?

Yes :-)

> How Can I achieve this ? Should I hook the checkout (pi3) right before the 
> end in order to redirect to the order page ?

Just an additional Marker with link to the invoice :-)

> Is there something to do inside the payment_invoice lib ?

No, nothing to do.

Greetings Volker

BTW: I will try to update pi6 next friday, with more flexible code and 
templates, if you're interested to help, give me a short mail I will 
send you the current code :-).


------------------------------

Message: 7
Date: Thu, 5 Apr 2007 11:34:01 +0200
From: "Luc Muller" <l.mul-nospam-ler at ameos.com>
Subject: Re: [TYPO3-commerce] Commerce and Invoice Module
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175765779.7099.typo3-project-commerce at lists.netfielders.de>
	

I'm Just starting to work on the invoice.
so, if there's a newer version of pi6 it would be fine if you can send it to 
me.

I saw that it seem to be quite "not flexible" for the moment. but I really 
need this feature.
So if you got one that is in a better state that the one that was published 
one or two weeks ago in SVN I would be glad to replace it in my work lol

Thanks a lot

Another point, Volker did you have a look to the changes I've made to 
navigation ?

"Volker Graubaum" <vg_typo3 at e-netconsulting.de> a ?crit dans le message de 
news: 
mailman.1.1175764746.1773.typo3-project-commerce at lists.netfielders.de...
> Hi Luc,
>
>> Does anyone here uses the Invoice module (pi6) in commerce ?
>
> Yes :-)
>
>> How Can I achieve this ? Should I hook the checkout (pi3) right before 
>> the end in order to redirect to the order page ?
>
> Just an additional Marker with link to the invoice :-)
>
>> Is there something to do inside the payment_invoice lib ?
>
> No, nothing to do.
>
> Greetings Volker
>
> BTW: I will try to update pi6 next friday, with more flexible code and 
> templates, if you're interested to help, give me a short mail I will send 
> you the current code :-). 




------------------------------

_______________________________________________
TYPO3-project-commerce mailing list
TYPO3-project-commerce at lists.netfielders.de
http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

End of TYPO3-project-commerce Digest, Vol 3, Issue 6
****************************************************



------------------------------

Message: 2
Date: Thu, 5 Apr 2007 12:09:45 +0200
From: "Sebastian Schwill" <info at plan12.net>
Subject: [TYPO3-commerce] usermail aus html email
To: "TYPO3 commerce extension project"
	<typo3-project-commerce at lists.netfielders.de>
Message-ID:
	<mailman.120267.1175767783.21067.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain;	charset="iso-8859-1"

hi
is it possible to send an html email to the user instead of a normal text mail, because the symbol f?r euro ist always printed as &euro; an that is not very nice

------------------------------

Message: 3
Date: Thu, 5 Apr 2007 12:13:03 +0200
From: "Sebastian Schwill" <info at plan12.net>
Subject: [TYPO3-commerce] delivery costs for different usergroups and
	different taxes
To: "TYPO3 commerce extension project"
	<typo3-project-commerce at lists.netfielders.de>
Message-ID:
	<mailman.120269.1175767981.21067.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain;	charset="iso-8859-1"

hi, 
i tried to make two artikels for one deleveryproduct with different access to usergroups.
one usergroup is for CH the ather for D. CH has a tax of 7.6 and D of 19.0 .
now i tried to make this artikles available in the shop but it does not work.
can someone help me?

the same is if a try to make different payment options for D and CH.


------------------------------

Message: 4
Date: Thu, 05 Apr 2007 12:18:33 +0200
From: Ingo Schmitt <mailinglisten at i-schmitt.de>
Subject: Re: [TYPO3-commerce] usermail aus html email
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175768314.15846.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hi Sebastian,

*you shoucl consider configuring your emai/news client correnctly, as 
you are now in the wrog thread*

> hi
> is it possible to send an html email to the user instead of a normal text mail, because the symbol f?r euro ist always printed as &euro; an that is not very nice

Currenty not, but we would be delighted if you could implement this :-)

ingo

Mit freundlichen Gruessen
-- 
Ingo Schmitt                        mailto:is at marketing-factory.de
Marketing Factory Consulting GmbH   http://typo3.marketing-factory.de/
Content Management mit Typo3: Beratung - Schulung - Realisierung


------------------------------

Message: 5
Date: Thu, 05 Apr 2007 12:25:33 +0200
From: Ingo Schmitt <mailinglisten at i-schmitt.de>
Subject: Re: [TYPO3-commerce] delivery costs for different usergroups
	and different taxes
To: typo3-project-commerce at lists.netfielders.de
Message-ID:
	<mailman.1.1175768734.17036.typo3-project-commerce at lists.netfielders.de>
	
Content-Type: text/plain; charset=us-ascii; format=flowed

Hi,

> hi, 
> i tried to make two artikels for one deleveryproduct with different access to usergroups.
> one usergroup is for CH the ather for D. CH has a tax of 7.6 and D of 19.0 .
> now i tried to make this artikles available in the shop but it does not work.
> can someone help me?
> 

You did assign this carticle to differnt usergrous?


> the same is if a try to make different payment options for D and CH.

Have a look at TYPOSCRIPT pi2.payment.allowedArticles and 
delivery.allowedArticles. (See manual for details..)

ingo


Mit freundlichen Gruessen
-- 
Ingo Schmitt                        mailto:is at marketing-factory.de
Marketing Factory Consulting GmbH   http://typo3.marketing-factory.de/
Content Management mit Typo3: Beratung - Schulung - Realisierung


------------------------------

_______________________________________________
TYPO3-project-commerce mailing list
TYPO3-project-commerce at lists.netfielders.de
http://lists.netfielders.de/cgi-bin/mailman/listinfo/typo3-project-commerce

End of TYPO3-project-commerce Digest, Vol 3, Issue 7
****************************************************



More information about the TYPO3-project-commerce mailing list