1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2005-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
#
# $Id: make_invoice.py 1070 2005-07-29 12:41:24Z nicoe $
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import wizard
import netsvc
import pooler
from osv import fields, osv
form = """<?xml version="1.0"?>
<form string="Create invoices">
<field name="msg" width="400"/>
</form>
"""
fields = {
'msg': {'string':'Total Amount to Pay', 'type':'text', 'readonly':True},
}
def _createInvoices(self, cr, uid, data, context):
pool_obj = pooler.get_pool(cr.dbname)
obj_carnet = pool_obj.get('cci_missions.ata_carnet')
data_carnet = obj_carnet.browse(cr,uid,data['ids'])
obj_lines=pool_obj.get('account.invoice.line')
list_inv = []
message_total = ""
for carnet in data_carnet:
context.update({'pricelist': carnet.partner_id.property_product_pricelist.id})
list = []
value = []
address_contact = False
address_invoice = False
create_ids = []
total = 0
pool_obj = pooler.get_pool(cr.dbname)
cur_obj=pool_obj.get('res.currency')
list.append(carnet.type_id.original_product_id.id)
list.append(carnet.type_id.copy_product_id.id)
list.append(carnet.warranty_product_id.id)
if carnet.invoice_id:
message_total += "ID "+str(carnet.id)+ " : " + str(carnet.invoice_id.amount_total) + "\n"
continue
context.update({'date':carnet.creation_date})
for product_line in carnet.product_ids:#extra Products
val = obj_lines.product_id_change(cr, uid, [], product_line.product_id.id,uom =False, partner_id=carnet.partner_id.id)
val['value'].update({'product_id' : product_line.product_id.id })
val['value'].update({'quantity' : product_line.quantity })
val['value'].update({'price_unit':product_line.price_unit})
value.append(val)
for add in carnet.partner_id.address:
if add.type == 'contact':
address_contact = add.id
if add.type == 'invoice':
address_invoice = add.id
if (not address_contact) and (add.type == 'default'):
address_contact = add.id
if (not address_invoice) and (add.type == 'default'):
address_invoice = add.id
count=0
for prod_id in list:
count +=1
val = obj_lines.product_id_change(cr, uid, [], prod_id,uom =False, partner_id=carnet.partner_id.id)
val['value'].update({'product_id' : prod_id })
if count==2:
qty_copy=carnet.initial_pages
if qty_copy<0:
qty_copy=0
val['value'].update({'quantity' : qty_copy })
else:
val['value'].update({'quantity' : 1 })
force_member=force_non_member=False
if carnet.member_price==1:
force_member=True
else:
force_non_member=True
context.update({'partner_id':carnet.partner_id})
context.update({'force_member':force_member})
context.update({'force_non_member':force_non_member})
context.update({'value_goods':carnet.goods_value})
context.update({'double_signature':carnet.double_signature})
context.update({'date':carnet.creation_date})
context.update({'emission_date':carnet.creation_date})
price=pool_obj.get('product.product')._product_price(cr, uid, [prod_id], False, False, context)
val['value'].update({'price_unit':price[prod_id]})
value.append(val)
for val in value:
if val['value']['quantity']>0.00:
inv_id ={
'name': val['value']['name'],#carnet.name,
'account_id':val['value']['account_id'],
'price_unit': val['value']['price_unit'],
'quantity': val['value']['quantity'],
'discount': False,
'uos_id': val['value']['uos_id'],
'product_id':val['value']['product_id'],
'invoice_line_tax_id': [(6,0,val['value']['invoice_line_tax_id'])],
'note':'',
}
create_ids.append(inv_id)
inv = {
'name': carnet.name,
'origin': carnet.name,
'type': 'out_invoice',
'reference': False,
'account_id': carnet.partner_id.property_account_receivable.id,
'partner_id': carnet.partner_id.id,
'address_invoice_id':address_invoice,
'address_contact_id':address_contact,
'invoice_line': [(6,0,create_ids)],
'currency_id' :carnet.partner_id.property_product_pricelist.currency_id.id,# 1,
'comment': '',
'payment_term':carnet.partner_id.property_payment_term.id,
}
for line in create_ids:
amount =line['price_unit'] * line['quantity'] * (1 - (line['discount'] or 0.0) / 100.0)
cur = carnet.partner_id.property_product_pricelist.currency_id #should be check , if its corect or not!
amount = cur_obj.round(cr, uid, cur, amount)
total = total + amount
message_total += "ID "+str(carnet.id)+ " : " + str(total) + "\n"
return {'msg' : message_total}
class create_invoice(wizard.interface):
states = {
'init' : {
'actions' : [_createInvoices],
'result' : {'type' : 'form' , 'arch' : form,
'fields' : fields,
'state' : [('end','Ok')]}
},
}
create_invoice("mission.simulation_carnet")
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|