[IMP]purchase: Improve the code and update the __openerp__.py

bzr revid: dbr@tinyerp.com-20111019102643-0dwe5pbhfsosvpy4
This commit is contained in:
DBR (OpenERP) 2011-10-19 15:56:43 +05:30
parent 2902a543a5
commit c30905e538
3 changed files with 11 additions and 6 deletions

View File

@ -61,11 +61,11 @@ Dashboard for purchase management that includes:
],
'test': [
#'test/ui/onchange_methods.yml',
#'test/process/rfq2purchase_order.yml',
#'test/process/invoice_from_reception.yml',
'test/process/rfq2purchase_order.yml',
'test/process/invoice_from_reception.yml',
#'test/process/procurement_buy.yml',
#'test/process/merge_purchase_order.yml',
#'test/process/purchase_order_cancel.yml',
'test/process/merge_purchase_order.yml',
'test/process/purchase_order_cancel.yml',
'test/process/purchase_order_delete.yml',
#'test/process/purchase_report.yml',
],

View File

@ -33,9 +33,13 @@
I want to cancel order form confirm state.
-
!python {model: purchase.order}: |
self.action_cancel(cr, uid, [ref("order_purchase5")])
try:
self.action_cancel(cr, uid, [ref("order_purchase5")])
except:
pass
#assert "You must first cancel all receptions related to this purchase order."
-
I have to first cancel reception of order .
I have to must first cancel all receptions related to this purchase order.
-
!python {model: stock.picking}: |
search_ids=self.search(cr, uid, [('purchase_id', '=', ref("order_purchase5"))])

View File

@ -5,6 +5,7 @@
-
!python {model: purchase.order}: |
copy_id = self.copy(cr, uid, ref("order_purchase3"))
assert self.browse(cr, uid,[order_purchase4]).state == "draft", "Purchase order should be draft"
self.unlink(cr, uid, [copy_id)])
-
I want to delete confirm purchase order.