blob: db8b431e5ad25f2ce8ba300739428047791baeae [file] [log] [blame]
Rushabh Mehta3966f1d2012-02-23 12:35:32 +05301# ERPNext - web based ERP (http://erpnext.com)
2# Copyright (C) 2012 Web Notes Technologies Pvt Ltd
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
Anand Doshi486f9df2012-07-19 13:40:31 +053017from __future__ import unicode_literals
Nabin Haita6f05502011-10-12 17:04:31 +053018from webnotes.model.doc import Document
19
20emp = Document(
21 fielddata = {
22 'doctype': 'Employee',
23 'name': 'emp1',
24 'employee_name': 'Nijil',
25 'status': 'Active',
26 'date_of_joining': '2011-01-01'
27 }
28)
29
30
31
32l_all = Document(
33 fielddata = {
34 'doctype' : 'Leave Allocation',
35 'name': 'l_all',
36 'employee' : 'emp1',
37 'leave_type' : 'Casual Leave',
38 'posting_date': '2011-03-01',
39 'fiscal_year': '2011-2012',
40 'total_leaves_allocated': 20,
41 'docstatus': 1
42 }
43)
44
45l_app1 = Document(
46 fielddata = {
47 'doctype' : 'Leave Application',
48 'name': 'l_app1',
49 'employee' : 'emp1',
50 'leave_type' : 'Casual Leave',
51 'posting_date': '2011-03-01',
52 'fiscal_year': '2011-2012',
53 'from_date': '2011-08-01',
54 'to_date': '2011-08-02',
55 'total_leave_days': 2
56 }
57)
58
59l_app2 = Document(
60 fielddata = {
61 'doctype' : 'Leave Application',
62 'name': 'l_app2',
63 'employee' : 'emp1',
64 'leave_type' : 'Casual Leave',
65 'posting_date': '2011-03-01',
66 'fiscal_year': '2011-2012',
67 'from_date': '2011-08-15',
68 'to_date': '2011-08-17',
69 'total_leave_days': 3
70 }
71)