diff --git a/mondumas/templates/devis/devis_ligne.pt b/mondumas/templates/devis/devis_ligne.pt
index 5cc18ee..f0cd1ee 100644
--- a/mondumas/templates/devis/devis_ligne.pt
+++ b/mondumas/templates/devis/devis_ligne.pt
@@ -47,8 +47,11 @@
-
diff --git a/mondumas/templates/stats/ca_groupes.pt b/mondumas/templates/stats/ca_groupes.pt
index 068cc16..abf9991 100644
--- a/mondumas/templates/stats/ca_groupes.pt
+++ b/mondumas/templates/stats/ca_groupes.pt
@@ -65,16 +65,19 @@
var options_ca_3y_1 = {
title: '${title1}',
colors: ['purple', 'ff9900', '#dc3912', '3366cc', 'green'],
+ pieHole: 0.3,
};
var options_ca_3y_2 = {
title: '${title2}',
colors: ['purple', 'ff9900', '#dc3912', '3366cc', 'green'],
+ pieHole: 0.3,
};
var options_ca_3y_3 = {
title: '${title3}',
colors: ['purple', 'ff9900', '#dc3912', '3366cc', 'green'],
+ pieHole: 0.3,
};
var chart_ca_12m = new google.visualization.ColumnChart(document.getElementById('chart_ca_12m'));
diff --git a/mondumas/views/default.py b/mondumas/views/default.py
index 2fcf45c..cdf238f 100644
--- a/mondumas/views/default.py
+++ b/mondumas/views/default.py
@@ -410,6 +410,6 @@ def ajax_article(request):
d['ref'] = items.ref
d['libelle'] = items.libelle
d['prixht'] = "%.2f" % items.prixht
+ d['unite'] = items.unite
liste.append(d)
-
return Response(json.dumps(liste))