-
-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] hr_timesheet_purchase_order: create PO automatically
- Loading branch information
1 parent
d575ada
commit 0645995
Showing
6 changed files
with
959 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo noupdate="1"> | ||
<record id="ir_cron_auto_generate_po" model="ir.cron"> | ||
<field name="name">HR Timesheet : Auto generate Purchase Order</field> | ||
<field name="model_id" ref="hr.model_hr_employee" /> | ||
<field name="state">code</field> | ||
<field name="code">model._cron_generate_auto_po()</field> | ||
<field name="interval_type">days</field> | ||
<field name="numbercall">-1</field> | ||
</record> | ||
</odoo> |
Oops, something went wrong.