Jump to content

Modification facture


Recommended Posts

Bonjour :)

J’essaye de personnaliser un peu les factures.

J’ai modifié le fichier : invoice.addresses-tab.tpl

Original : 

<table id="addresses-tab" cellspacing="0" cellpadding="0">
	<tr>
		<td width="50%">{if $delivery_address}<span class="bold">{l s='Delivery Address' d='Shop.Pdf' pdf='true'}</span><br/><br/>
				{$delivery_address}
			{/if}
		</td>
		<td width="50%"><span class="bold">{l s='Billing Address' d='Shop.Pdf' pdf='true'}</span><br/><br/>
				{$invoice_address}
		</td>
	</tr>
</table>

ma modification :

<table id="addresses-tab" cellspacing="0" cellpadding="0">
	<tr>
		<td width="33%"><span class="bold"> </span><br/><br/>
			{if isset($order_invoice)}{$order_invoice->shop_address}{/if}
		</td>
		<td width="33%">{if $delivery_address}<span class="bold">{l s='Delivery Address' pdf='true'}</span><br/><br/>
				{$delivery_address}
			{/if}
		</td>
		<td width="33%"><span class="bold">{l s='Billing Address' pdf='true'}</span><br/><br/>
				{$invoice_address}
		</td>
	</tr>
</table>

J'obtiens visuellement ce que je veux mais la traduction saute : "Adresse de livraison" est remplacé par "Delivery Adress" idem pour "adresse de facturation"

Je suis pas très fort niveau codage. (En faite je suis même très mauvais lol). Une petite idée sur le soucis ?

Merci d'avance, (ps 1.7.8.3)

FACT.PNG

Edited by shep68
ajout version ps (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...