~openerp-community/openobject-doc/6.1

« back to all changes in this revision

Viewing changes to source/technical_guide/purchase_journal.rst

  • Committer: TruongSinh Tran
  • Date: 2009-07-19 19:02:35 UTC
  • Revision ID: truongsinh@vipescoserver-20090719190235-fu3bxcrbpvwuk5h7
[FIX] build_i18n.py .. raw:: html

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
.. module:: purchase_journal
 
3
    :synopsis: Managing sales and deliveries by journal 
 
4
    :noindex:
 
5
.. 
 
6
 
 
7
.. raw:: html
 
8
 
 
9
      <br />
 
10
    <link rel="stylesheet" href="../_static/hide_objects_in_sidebar.css" type="text/css" />
 
11
 
 
12
.. tip:: This module is part of the Open ERP software, the leading Open Source 
 
13
  enterprise management system. If you want to discover Open ERP, check our 
 
14
  `screencasts <http://openerp.tv>`_ or download 
 
15
  `Open ERP <http://openerp.com>`_ directly.
 
16
 
 
17
.. raw:: html
 
18
 
 
19
    <div class="js-kit-rating" title="" permalink="" standalone="yes" path="/purchase_journal"></div>
 
20
    <script src="http://js-kit.com/ratings.js"></script>
 
21
 
 
22
Managing sales and deliveries by journal (*purchase_journal*)
 
23
=============================================================
 
24
:Module: purchase_journal
 
25
:Name: Managing sales and deliveries by journal
 
26
:Version: 5.0.1.0
 
27
:Author: Tiny
 
28
:Directory: purchase_journal
 
29
:Web: http://www.openerp.com
 
30
:Official module: no
 
31
:Quality certified: no
 
32
 
 
33
Description
 
34
-----------
 
35
 
 
36
::
 
37
 
 
38
  None
 
39
 
 
40
Download links
 
41
--------------
 
42
 
 
43
You can download this module as a zip file in the following version:
 
44
 
 
45
  * `trunk <http://www.openerp.com/download/modules/trunk/purchase_journal.zip>`_
 
46
 
 
47
 
 
48
Dependencies
 
49
------------
 
50
 
 
51
 * :mod:`stock`
 
52
 * :mod:`purchase`
 
53
 
 
54
Reports
 
55
-------
 
56
 
 
57
None
 
58
 
 
59
 
 
60
Menus
 
61
-------
 
62
 
 
63
 * Purchase Management/Configuration
 
64
 * Purchase Management/Configuration/Purchases Journals
 
65
 * Purchase Management/Purchases by Journal
 
66
 * Purchase Management/Purchases by Journal/My Open Journals
 
67
 * Purchase Management/Purchases by Journal/All Open Journals
 
68
 * Purchase Management/Reporting
 
69
 * Purchase Management/Reporting/This Month
 
70
 * Purchase Management/Reporting/This Month/Purchases by Journal
 
71
 * Purchase Management/Reporting/All Months
 
72
 * Purchase Management/Reporting/All Months/Purchases by Journal
 
73
 
 
74
Views
 
75
-----
 
76
 
 
77
 * \* INHERIT stock.picking.journal.view.form (form)
 
78
 * \* INHERIT stock.picking.purchase.journal.view.tree (tree)
 
79
 * purchase_journal.purchase.journal.form (form)
 
80
 * purchase_journal.purchase.journal.tree (tree)
 
81
 * \* INHERIT purchase.order.journal.view.form (form)
 
82
 * \* INHERIT purchase.order.journal.view.tree (tree)
 
83
 * purchase_journal.purchase.stats.tree (tree)
 
84
 * purchase_journal.purchase.stats.form (form)
 
85
 
 
86
 
 
87
Objects
 
88
-------
 
89
 
 
90
Object: purchase Journal (purchase_journal.purchase.journal)
 
91
############################################################
 
92
 
 
93
 
 
94
 
 
95
:code: Code, char, required
 
96
 
 
97
 
 
98
 
 
99
 
 
100
 
 
101
:user_id: Responsible, many2one, required
 
102
 
 
103
 
 
104
 
 
105
 
 
106
 
 
107
:name: Journal, char, required
 
108
 
 
109
 
 
110
 
 
111
 
 
112
 
 
113
:note: Note, text
 
114
 
 
115
 
 
116
 
 
117
 
 
118
 
 
119
:state: Creation date, selection, required
 
120
 
 
121
 
 
122
 
 
123
 
 
124
 
 
125
:purchase_stats_ids: purchase Stats, one2many, readonly
 
126
 
 
127
 
 
128
 
 
129
 
 
130
 
 
131
:date: Journal date, date, required
 
132
 
 
133
 
 
134
 
 
135
 
 
136
 
 
137
:date_created: Creation date, date, required, readonly
 
138
 
 
139
 
 
140
 
 
141
 
 
142
 
 
143
:date_validation: Validation date, date, readonly
 
144
 
 
145
 
 
146
 
 
147
 
 
148
Object: Purchases Orders by Journal (purchase_journal.purchase.stats)
 
149
#####################################################################
 
150
 
 
151
 
 
152
 
 
153
:count: # of Lines, integer, readonly
 
154
 
 
155
 
 
156
 
 
157
 
 
158
 
 
159
:price_total: Total Price, float, readonly
 
160
 
 
161
 
 
162
 
 
163
 
 
164
 
 
165
:name: Month, date, readonly
 
166
 
 
167
 
 
168
 
 
169
 
 
170
 
 
171
:state: Order State, selection, readonly
 
172
 
 
173
 
 
174
 
 
175
 
 
176
 
 
177
:journal_id: Journal, many2one, readonly
 
178
 
 
179
 
 
180
 
 
181
 
 
182
 
 
183
:price_average: Average Price, float, readonly
 
184
 
 
185
 
 
186
 
 
187
 
 
188
 
 
189
:quantity: Quantities, float, readonly
 
190
 
 
191