[FIX] import netsvc from the openerp namespace.

bzr revid: vmt@openerp.com-20130209070923-db3hqz16exe6m6i4
This commit is contained in:
Vo Minh Thu 2013-02-09 08:09:23 +01:00
parent cebb9cce78
commit 854dd54f47
3 changed files with 24 additions and 24 deletions

View File

@ -18,7 +18,7 @@
I again set to draft and then confirm.
-
!python {model: hr.holidays}: |
import netsvc
from openerp import netsvc
wf_service = netsvc.LocalService("workflow")
self.set_to_draft(cr, uid, [ref('hr_holidays_employee1_cl')])
wf_service.trg_validate(uid, 'hr.holidays', ref('hr_holidays_employee1_cl'), 'confirm', cr)

View File

@ -60,7 +60,7 @@
-
!python {model: hr_timesheet_sheet.sheet}: |
uid = ref('base.user_root')
import netsvc
from openerp import netsvc
try:
self.button_confirm(cr, uid, [ref('hr_timesheet_sheet_sheet_deddk0')], {"active_ids":
[ref("hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form")],"active_id": ref("hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form"),

View File

@ -31,7 +31,7 @@
I'm Opening that Invoice which is created for "Seagate".
-
!python {model: res.partner}: |
import netsvc
from openerp import netsvc
from openerp.tools.translate import _
invoice_pool = self.pool.get('account.invoice')
partner_pool = self.pool.get('res.partner')