Salut

besoin d'un petit coup de main, en espérant ne pas me faire viré, je suis pas un professionnel de l'informatique, mais un professionnel avec des problèmes d'informatique...
j'ai essayer de chercher, mais y'a plein de terme technique que je comprends pas, désolé...

je suis entrain de préparer mes modèles de devis, sur un logiciel de compta
(openconcerto) et il génère des devis personnalisable par chacun avec un tableau openoffice calc et un fichiers xml avec.
je connais rien en xml, mais bon, j'ai put modifier facilement 2-3 truc, en appelant des champs

mais la je dois lancer un calcul

donc je voulais le faire calculer, en gros
j'ai dans mon xml le tableau
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<table endPageLine="66" firstLine="29" endLine="60" lastColumn="L" base="Societe" table="DEVIS_ELEMENT" blankLineBeforeStyle="Titre 1" pageRef="L16">
		<element location="B" type="fill" cellSize="59">
			<field base="Societe" table="DEVIS_ELEMENT" name="NOM"/>			
		</element>
 
		<element location="E" type="fill">
			<field base="Societe" table="DEVIS_ELEMENT" name="PV_HT" type="devise" valuesExpected="0"/>
		</element>
 
		<element location="F" type="fill">
			<field base="Societe" table="DEVIS_ELEMENT" name="ID_TAXE" conditionField="PV_HT" conditionExpValue="0">
				<field base="Societe" table="TAXE" name="TAUX" suffix="%" />
			</field>
		</element>
 
		<element location="G" type="fill">
			<field base="Societe" table="DEVIS_ELEMENT" name="QTE" conditionField="PV_HT" conditionExpValue="0"/>
		</element>
 
 
		<element location="H" type="fill">
			<field base="Societe" table="DEVIS_ELEMENT" name="POURCENT_REMISE" prefix ="-" suffix="%" valuesExpected="0"/>
		</element> 
 
<element location="I" type="fill">
ICI JE VOUDRAIS ("POURCENT_REMISE"* "PV_HT") EN GROS COLONNE "H" MULTIPLIER PAR COLONNE "E"
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
</element> 		
		<element location="J" type="fill">
			<field base="Societe" table="DEVIS_ELEMENT" name="T_PV_HT" type="devise" valuesExpected="0"/>
		</element>
<element location="K" type="fill">
ICI JE VOUDRAIS ("T_PV_HT"* "TAUX"), EN GROS COLONNE "J" MULTIPLIER PAR COLONNE "F"
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
</element> 		
		<element location="L" type="fill">
			<field base="Societe" table="DEVIS_ELEMENT" name="T_PV_TTC" type="devise" valuesExpected="0"/>
		</element>
 
	</table>
</contentDocument>
MERCI