|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
Hello list.
I need to do something. I need to show 3 prices of my products. I'm using 3 fields - price, price2 and Direct cost. So, I can modify my template to show price and price2 but Direct cost. How can i made it? Thanks, Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#2
|
|||
|
|||
|
Any solution?
Alexander ÐÉÛÅÔ: > Hello list. > I need to do something. I need to show 3 prices of my products. I'm > using 3 fields - price, price2 and Direct cost. So, I can modify my > template to show price and price2 but Direct cost. How can i made it? > > Thanks, Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#3
|
|||
|
|||
|
Franz, can you show me direction?
Please Alexander: > Any solution? > > > Alexander ÐÉÛÅÔ: >> Hello list. >> I need to do something. I need to show 3 prices of my products. I'm >> using 3 fields - price, price2 and Direct cost. So, I can modify my >> template to show price and price2 but Direct cost. How can i made it? >> >> Thanks, Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#4
|
|||
|
|||
|
Hello Alexander,
>>> I need to do something. I need to show 3 prices of my products. I'm >>> using 3 fields - price, price2 and Direct cost. So, I can modify my >>> template to show price and price2 but Direct cost. How can i made it? >>> For Direct cost you have the marker ###PRODUCT_DIRECTCOST### - Franz _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#5
|
|||
|
|||
|
Franz Holzinger ÐÉÛÅÔ:
> Hello Alexander, > >>>> I need to do something. I need to show 3 prices of my products. I'm >>>> using 3 fields - price, price2 and Direct cost. So, I can modify my >>>> template to show price and price2 but Direct cost. How can i made it? >>>> > > For Direct cost you have the marker > ###PRODUCT_DIRECTCOST### > > - Franz > Oh, Thanks Franz! _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#6
|
|||
|
|||
|
Franz Holzinger ÐÉÛÅÔ:
> Hello Alexander, > >>>> I need to do something. I need to show 3 prices of my products. I'm >>>> using 3 fields - price, price2 and Direct cost. So, I can modify my >>>> template to show price and price2 but Direct cost. How can i made it? >>>> > > For Direct cost you have the marker > ###PRODUCT_DIRECTCOST### > > - Franz > Seems like this marker doesn't work. I tried some variations of this but nothing happens. Alex _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#7
|
|||
|
|||
|
Hello Alex,
> Franz Holzinger ÐÉÛÅÔ: >> Hello Alexander, >> >>>>> I need to do something. I need to show 3 prices of my products. I'm >>>>> using 3 fields - price, price2 and Direct cost. So, I can modify my >>>>> template to show price and price2 but Direct cost. How can i made it? >>>>> >> >> For Direct cost you have the marker >> ###PRODUCT_DIRECTCOST### >> >> - Franz >> > > Seems like this marker doesn't work. I tried some variations of this but > nothing happens. Unfortunately this is missing in the code. It should be treated like the price: Direct cost: ###DIRECTCOST_TAX### add the following lines to getItemMarkerArray in tt_products/model/class.tx_ttproducts_article_base.php $markerArray['###DIRECTCOST_TAX###'] = $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],1,$row['tax'],$this->conf['TAXincluded']))); $markerArray['###DIRECTCOST_NO_TAX###'] = $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],0,$row['tax'],$this->conf['TAXincluded']))); - Franz _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#8
|
|||
|
|||
|
Thanks
![]() Franz Holzinger ÐÉÛÅÔ: > Hello Alex, > >> Franz Holzinger ÐÉÛÅÔ: >>> Hello Alexander, >>> >>>>>> I need to do something. I need to show 3 prices of my products. I'm >>>>>> using 3 fields - price, price2 and Direct cost. So, I can modify my >>>>>> template to show price and price2 but Direct cost. How can i made it? >>>>>> >>> For Direct cost you have the marker >>> ###PRODUCT_DIRECTCOST### >>> >>> - Franz >>> >> Seems like this marker doesn't work. I tried some variations of this but >> nothing happens. > > Unfortunately this is missing in the code. > > It should be treated like the price: > Direct cost: ###DIRECTCOST_TAX### > > add the following lines to getItemMarkerArray in > tt_products/model/class.tx_ttproducts_article_base.php > > $markerArray['###DIRECTCOST_TAX###'] = > $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],1,$row['tax'],$this->conf['TAXincluded']))); > $markerArray['###DIRECTCOST_NO_TAX###'] = > $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],0,$row['tax'],$this->conf['TAXincluded']))); > > > - Franz _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#9
|
|||
|
|||
|
It was too fast. After i tried this hack it starts working but it shows
only "0", not my price in Direct Cost field Alexander: > Thanks ![]() > > > Franz Holzinger ÐÉÛÅÔ: >> Hello Alex, >> >>> Franz Holzinger ÐÉÛÅÔ: >>>> Hello Alexander, >>>> >>>>>>> I need to do something. I need to show 3 prices of my products. I'm >>>>>>> using 3 fields - price, price2 and Direct cost. So, I can modify my >>>>>>> template to show price and price2 but Direct cost. How can i made >>>>>>> it? >>>>>>> >>>> For Direct cost you have the marker >>>> ###PRODUCT_DIRECTCOST### >>>> >>>> - Franz >>>> >>> Seems like this marker doesn't work. I tried some variations of this but >>> nothing happens. >> >> Unfortunately this is missing in the code. >> >> It should be treated like the price: >> Direct cost: ###DIRECTCOST_TAX### >> >> add the following lines to getItemMarkerArray in >> tt_products/model/class.tx_ttproducts_article_base.php >> >> $markerArray['###DIRECTCOST_TAX###'] = >> $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],1,$row['tax'],$this->conf['TAXincluded']))); >> >> $markerArray['###DIRECTCOST_NO_TAX###'] = >> $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],0,$row['tax'],$this->conf['TAXincluded']))); >> >> >> >> - Franz _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
|
#10
|
|||
|
|||
|
Hi Alexander, hi Franz,
here is the code, that I modified / added to use ###DIRECTCOST### as a third price. The line numbers are based on the 2.5.2 alpha. File "tt_products/static/old_style/setup.txt": "directcost" added to - conf.tt_products.ALL.requiredFields and - conf.tt_products.articles.ALL.requiredFields - Changed file "tt_products/model/class.tx_ttproducts_article.php" Line 70: directcost add to $requiredFields Line 139: "directcost" added to $fieldArray['number'] - Changed file "tt_products/model/class.tx_ttproducts_product.php" Line 79: directcost add to $requiredFields - Changed file "tt_products/model/class.tx_ttproducts_article_base.php" after line 179 new marker added ###DIRECTCOST### $directcost = $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],1 $row['tax'],$this->conf['TAXincluded']), $taxInclExcl)); $markerArray['###DIRECTCOST###'] = $directcost; Hope that helps. Greets, Marcus Alexander wrote: > It was too fast. After i tried this hack it starts working but it > shows only "0", not my price in Direct Cost field > > > Alexander: >> Thanks ![]() >> >> >> Franz Holzinger пишет: >>> Hello Alex, >>> >>>> Franz Holzinger пишет: >>>>> Hello Alexander, >>>>> >>>>>>>> I need to do something. I need to show 3 prices of my products. >>>>>>>> I'm using 3 fields - price, price2 and Direct cost. So, I can >>>>>>>> modify my template to show price and price2 but Direct cost. >>>>>>>> How can i made it? >>>>>>>> >>>>> For Direct cost you have the marker >>>>> ###PRODUCT_DIRECTCOST### >>>>> >>>>> - Franz >>>>> >>>> Seems like this marker doesn't work. I tried some variations of >>>> this but nothing happens. >>> >>> Unfortunately this is missing in the code. >>> >>> It should be treated like the price: >>> Direct cost: ###DIRECTCOST_TAX### >>> >>> add the following lines to getItemMarkerArray in >>> tt_products/model/class.tx_ttproducts_article_base.php >>> >>> $markerArray['###DIRECTCOST_TAX###'] = >>> $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],1 $row['tax'],$this->conf['TAXincluded']))); >>> >>> $markerArray['###DIRECTCOST_NO_TAX###'] = >>> $this->pibase->price->printPrice($this->pibase->price->priceFormat($this->pibase->price->getPrice($row['directcost'],0 $row['tax'],$this->conf['TAXincluded']))); >>> >>> >>> >>> - Franz _______________________________________________ TYPO3-project-tt-products mailing list TYPO3-project-tt-products (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-tt-products |
| Lesezeichen |
| Themen-Optionen | |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3-shop] setting a delivery price per item + a basic price fordelivery | Corrado | typo3-project-tt-products@lists.netfielders.de | 1 | 03.05.2007 07:44 |
| [TYPO3-shop] best-price plattform | Stephan Petzl | typo3-project-tt-products@lists.netfielders.de | 0 | 11.04.2007 09:47 |
| [TYPO3-shop] multi price for products | Stephan Petzl | typo3-project-tt-products@lists.netfielders.de | 3 | 21.03.2007 16:21 |
| [TYPO3-shop] tt_products order_list template and order cost | Igor Pstyga | typo3-project-tt-products@lists.netfielders.de | 0 | 13.02.2007 18:36 |
| [TYPO3-shop] price based on FE group? | Horn Gábor | typo3-project-tt-products@lists.netfielders.de | 4 | 05.01.2007 17:40 |