Ajouter ou rechercher une suggestion

Commentaires (3)

Customer Reviews

Yves

Réponse principale

Bonjour,

Merci et Félicitation !

voici la solution:

.total {
display:none;
}

voici mon code actuel:

	{{#eq kind 'correction'}}
		{{#eq locale 'pl'}}
			<!-- if you want to customize 'positions_correction', you can override this by https://github.com/fakturownia/Szablony/blob/master/partials/positions_correction.hbs.html  -->
			{{>positions_correction}}
		{{else}}
			{{#not_eq kind 'maintenance_request'}}
				<!-- si vous souhaitez personnaliser le tableau, vous pouvez le remplacer par https://github.com/vosfactures/Formats/blob/master/partials/positions.handlebars -->
				<!-- if you want to customize 'positions', you can override this by https://github.com/fakturownia/Szablony/blob/master/partials/positions.hbs.html  -->
				{{>positions}}
			{{else}}
				{{>positions_without_prices}}
			{{/not_eq}}
		{{/eq}}
	{{else}}
		{{#not_eq kind 'maintenance_request'}}
			<!-- si vous souhaitez personnaliser le tableau, vous pouvez le remplacer par https://github.com/vosfactures/Formats/blob/master/partials/positions.handlebars -->
			<!-- if you want to customize 'positions', you can override this by https://github.com/fakturownia/Szablony/blob/master/partials/positions.hbs.html  -->
			{{>positions}}
		{{else}}
			{{>positions_without_prices}}
		{{/not_eq}}
	{{/eq}}

Ajouter un commentaire