|
From: Ruediger H. <hae...@us...> - 2005-08-10 02:37:58
|
Update of /cvsroot/pn-commerce/pn-commerce/pntemplates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24328/pntemplates Modified Files: pncommerce_admin_config.html pncommerce_admin_itemedit.html Log Message: Add facility to store prices with VATs included (gross prices) Index: pncommerce_admin_config.html =================================================================== RCS file: /cvsroot/pn-commerce/pn-commerce/pntemplates/pncommerce_admin_config.html,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** pncommerce_admin_config.html 22 Mar 2005 12:14:59 -0000 1.46 --- pncommerce_admin_config.html 8 Aug 2005 19:39:17 -0000 1.47 *************** *** 161,166 **** <td><b><!--[pnml name='_PNC_CREATEITEMSASTAXEXEMPT' html=1 ]--></b></td></tr> ! <tr> ! <td align="right"><input TYPE="checkbox" NAME="JumpToCartviewAfterAdd" VALUE="on"<!--[ $shopConfigSupplier.JumpToCartviewAfterAddchecked ]-->> </td> <td> --- 161,166 ---- <td><b><!--[pnml name='_PNC_CREATEITEMSASTAXEXEMPT' html=1 ]--></b></td></tr> ! <tr> ! <td align="right"><input TYPE="checkbox" NAME="JumpToCartviewAfterAdd" VALUE="on"<!--[ $shopConfigSupplier.JumpToCartviewAfterAddchecked ]-->> </td> <td> *************** *** 168,171 **** --- 168,178 ---- </td> </tr> + <tr> + <td align="right"><input TYPE="checkbox" NAME="VatIncluded" VALUE="on" <!--[ $shopConfigSupplier.VatIncludedChecked ]-->> + </td> + <td> + <b><!--[ pnml name='_PNC_VATINCLUDED' html=1 ]--></b> + </td> + </tr> <tr> <td align="right"> Index: pncommerce_admin_itemedit.html =================================================================== RCS file: /cvsroot/pn-commerce/pn-commerce/pntemplates/pncommerce_admin_itemedit.html,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** pncommerce_admin_itemedit.html 13 Jul 2005 09:13:22 -0000 1.26 --- pncommerce_admin_itemedit.html 8 Aug 2005 19:39:18 -0000 1.27 *************** *** 17,20 **** --- 17,21 ---- <!--[ pncGetSchemes assign="schemes" ]--> <!--[ pncGetConfigThumbnail ]--> + <!--[ pncGetConfigSupplier ]--> <b><!--[ pnml name='_PNC_TYPENEWITEM' ]--></b><br> *************** *** 78,82 **** --- 79,87 ---- </td> <td align='left'> + <!--[ if $shopConfigSupplier.VatIncluded == 'on' ]--> + <input class='pn-text' type='text' name='ItemCost' size='50' value='<!--[ $Item.CostLong|pncShowAsPrice:true:false:false ]-->'> + <!--[ else ]--> <input class='pn-text' type='text' name='ItemCost' size='50' value='<!--[ $Item.Cost|pncShowAsPrice:true:false:false ]-->'> + <!--[ /if ]--> </td> </tr> |