From: Benoît Pin <benoit.pin@gmail.com>
Date: Sun, 7 Nov 2010 02:31:56 +0000 (+0100)
Subject: Utilisation de la taille du batch par défaut.
X-Git-Url: https://svn.cri.ensmp.fr/git/photoprint.git/commitdiff_plain/refs/heads/master

Utilisation de la taille du batch par défaut.
---

diff --git a/skins/my_orders.py b/skins/my_orders.py
index 5d3e6da..e13af90 100755
--- a/skins/my_orders.py
+++ b/skins/my_orders.py
@@ -57,7 +57,7 @@ def beforeGetItem(item) :
 	info['state'] = wtool.getInfoFor(item, 'review_state', wf_id='order_workflow')
 	return info
 	
-orders = Batch(orders, 20, b_start, orphan=0, quantumleap=1, before_getitem=beforeGetItem)
+orders = Batch(orders, context.default_batch_size, b_start, orphan=0, quantumleap=1, before_getitem=beforeGetItem)
 options['orders'] = orders
 
 breadcrumbs = [
diff --git a/skins/order_list.py b/skins/order_list.py
index 37a0e4c..2635e58 100755
--- a/skins/order_list.py
+++ b/skins/order_list.py
@@ -89,7 +89,7 @@ def beforeGetItem(item) :
 		info['customer'] = item.Creator()
 	return info
 	
-orders = Batch(orders, 40, b_start, orphan=0, quantumleap=1, before_getitem=beforeGetItem)
+orders = Batch(orders, context.default_batch_size, b_start, orphan=0, quantumleap=1, before_getitem=beforeGetItem)
 options['orders'] = orders
 
 return context.order_list_template(**options)