From 6dfd5b1fac9e0cead6cde5966146f6580733c018 Mon Sep 17 00:00:00 2001
From: cla <c.aschieri@19.coop>
Date: Thu, 22 Jan 2015 14:15:34 +0100
Subject: [PATCH] Added extrafields features for Supplier Invoice Line and
 Supplier Order Line

---
 htdocs/core/lib/fourn.lib.php | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/htdocs/core/lib/fourn.lib.php b/htdocs/core/lib/fourn.lib.php
index e4e7b04b057..cf1db634e88 100644
--- a/htdocs/core/lib/fourn.lib.php
+++ b/htdocs/core/lib/fourn.lib.php
@@ -186,10 +186,22 @@ function supplierorder_admin_prepare_head()
 	$head[$h][2] = 'supplierorder';
 	$h++;
 
+	$head[$h][0] = DOL_URL_ROOT.'/admin/supplierorderdet_extrafields.php';
+	$head[$h][1] = $langs->trans("ExtraFieldsLines");
+	$head[$h][2] = 'supplierorderdet';
+	$h++;
+	
+	
+
 	$head[$h][0] = DOL_URL_ROOT.'/admin/supplierinvoice_extrafields.php';
 	$head[$h][1] = $langs->trans("ExtraFieldsSupplierInvoices");
 	$head[$h][2] = 'supplierinvoice';
 	$h++;
+	
+	$head[$h][0] = DOL_URL_ROOT.'/admin/supplierinvoicedet_extrafields.php';
+	$head[$h][1] = $langs->trans("ExtraFieldsLines");
+	$head[$h][2] = 'supplierinvoicedet';
+	$h++;
 
 	complete_head_from_modules($conf,$langs,null,$head,$h,'supplierorder_admin','remove');
 
-- 
GitLab