Skip to content
Snippets Groups Projects
Commit 8f223be5 authored by clement's avatar clement
Browse files

c

parent a1671834
No related branches found
No related tags found
No related merge requests found
<?php
class LigneFactureOrdonnance extends LigneFacture
{
public $_specialFields = array(
"prestation" => array(
"it" => -1
),
"produit" => array(
"i" => -1
));
}
\ No newline at end of file
<?php
class LigneFacturePrestation extends LigneFacture
{
public $_specialFields = array(
"ordonnance" => array(
"it" => -1
),
"produit" => array(
"i" => -1
));
}
\ No newline at end of file
<?php
class LigneFactureProduit extends LigneFacture
{
public $_specialFields = array(
"ordonnance" => array(
"it" => -1
),
"prestation" => array(
"i" => -1
));
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment