From 8f223be5be9b2cae6570ec00ff1d1822c8c5d52b Mon Sep 17 00:00:00 2001
From: clement <clemmercier45@gmail.com>
Date: Thu, 19 Jun 2014 02:12:05 +0200
Subject: [PATCH] c

---
 class/lignefactureordonnance     | 12 ++++++++++++
 class/lignefactureprestation.php | 13 +++++++++++++
 class/lignefactureproduit.php    | 12 ++++++++++++
 3 files changed, 37 insertions(+)
 create mode 100644 class/lignefactureordonnance
 create mode 100644 class/lignefactureprestation.php
 create mode 100644 class/lignefactureproduit.php

diff --git a/class/lignefactureordonnance b/class/lignefactureordonnance
new file mode 100644
index 0000000..084a22b
--- /dev/null
+++ b/class/lignefactureordonnance
@@ -0,0 +1,12 @@
+<?php
+
+class LigneFactureOrdonnance extends LigneFacture
+{
+	public $_specialFields = array(
+        "prestation" => array(
+            "it" => -1
+        ),
+        "produit" => array(
+            "i" => -1
+        ));
+}
\ No newline at end of file
diff --git a/class/lignefactureprestation.php b/class/lignefactureprestation.php
new file mode 100644
index 0000000..9dc6ce1
--- /dev/null
+++ b/class/lignefactureprestation.php
@@ -0,0 +1,13 @@
+<?php
+
+class LigneFacturePrestation extends LigneFacture
+{
+	public $_specialFields = array(
+        "ordonnance" => array(
+            "it" => -1
+        ),
+        "produit" => array(
+            "i" => -1
+        ));
+
+}
\ No newline at end of file
diff --git a/class/lignefactureproduit.php b/class/lignefactureproduit.php
new file mode 100644
index 0000000..07f9552
--- /dev/null
+++ b/class/lignefactureproduit.php
@@ -0,0 +1,12 @@
+<?php
+
+class LigneFactureProduit extends LigneFacture
+{
+	public $_specialFields = array(
+        "ordonnance" => array(
+            "it" => -1
+        ),
+        "prestation" => array(
+            "i" => -1
+        ));
+}
\ No newline at end of file
-- 
GitLab