-
Notifications
You must be signed in to change notification settings - Fork 1
/
wizard_facturador.py
executable file
·327 lines (258 loc) · 12.8 KB
/
wizard_facturador.py
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
#-*- coding: utf-8 -*-
from trytond.pool import Pool
from trytond.model import ModelView, fields
from trytond.wizard import Wizard, StateView, StateTransition, Button
import logging
import itertools
logger = logging.getLogger('sale')
REQUERIDO = True
from trytond.transaction import Transaction
import datetime
from trytond.pyson import Eval, And, Bool, Equal, Not, Or
import sys
import os
from decimal import Decimal, ROUND_DOWN, ROUND_UP, ROUND_HALF_UP
import math
INVOICE_TYPE_AFIP_CODE = {
('out', 'A'): ('1', u'01-Factura A'),
('out', 'B'): ('6', u'06-Factura B'),
('out', 'C'): ('11', u'11-Factura C'),
('out', 'E'): ('19', u'19-Factura E'),
}
class CrearFacturasStart(ModelView):
'Crear Facturas Start'
__name__ = 'policoop_facturador.crear_facturas.start'
tipofac = fields.Selection([
('masivo','Masivo'),
('individual', 'Individual')
], 'Tipo de Facturacion', required=REQUERIDO)
#Obligatorio solo si Masivo
plan_salud = fields.Many2One('gnuhealth.insurance.plan', 'Tipo de plan de salud',
states={
'required': Eval('tipofac') == 'masivo',
})
fecha_emision_factura = fields.Date('Fecha emision factura', required=REQUERIDO)
#Obligatorio solo si Individual
insurance = fields.Many2One('gnuhealth.insurance', 'Asociado',
states={
'required': Eval('tipofac') == 'individual',
})
class CrearFacturasExito(ModelView):
'Crear Facturas Exito'
__name__ = 'policoop_facturador.crear_facturas.exito'
resumen = fields.Text('Resumen', readonly=True)
class CrearFacturas(Wizard):
'Crear Facturas'
__name__ = 'policoop_facturador.crear_facturas'
start = StateView('policoop_facturador.crear_facturas.start',
'policoop_facturador.crear_facturas_start_view_form', [
Button('Cancel', 'end', 'tryton-cancel'),
Button('Crear Facturas', 'crear', 'tryton-ok', default=True),
])
exito = StateView('policoop_facturador.crear_facturas.exito',
'policoop_facturador.crear_facturas_exito_view_form', [
Button('Ok', 'end', 'tryton-ok', default=True),
])
crear = StateTransition()
def transition_crear(self):
self.crear_venta_padre()
return 'exito'
''''''''''''''''''''''''''''''''''''''''''
''' FUNCIONES VARIAS '''
''''''''''''''''''''''''''''''''''''''''''
def default_exito(self, fields):
"""
Esto lo copiamos de ir/translation.py
"""
#texto = self.exito.resumen
#self.exito.resumen = False
#return {
# 'resumen': texto,
# }
return {}
''''''''''''''''''''''''''''''''''''''''''
''' FUNCIONES DE CREACION DE VENTAS '''
''''''''''''''''''''''''''''''''''''''''''
def crear_venta_padre(self):
#datos de la empresa
Company = Pool().get('company.company')
cuit_policoop = Company(Transaction().context.get('company')).party.vat_number
Insurances = Pool().get('gnuhealth.insurance')
if self.start.plan_salud:
filtro_insurance = [
('member_exp', '>=', datetime.date.today()),
('plan_id', '=', self.start.plan_salud),
]
else:
filtro_insurance = [
('member_exp', '<=', datetime.date.today()),
]
if self.start.tipofac=='individual':
if self.start.insurance:
filtro_insurance.append(('id', '=', self.start.insurance.id))
insurances = Insurances.search(filtro_insurance,
order=[('id','ASC')])
if insurances:
for item in insurances:
creadorfacturas = CreadorFacturas(self.start.fecha_emision_factura)
creadorfacturas.crear_venta_padre(item.id)
#Transaction().cursor.commit()
return 'end'
class CreadorFacturas(object):
def __init__(self, fecha_emision_factura):
self.cantidad_facturas_creadas = 0
self.fecha_emision_factura = fecha_emision_factura
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'''FUNCIONES GENERALES '''
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
def calcular_unit_price(self, quantity, product, price_list, customer, dias_lectura=None):
return product.get_sale_price([product], quantity)[product.id]
def buscar(self, modelo, atributo, valor):
search = modelo.search([atributo, '=', valor])
if search:
return search[0]
else:
return None
def get_subtotal_cargos(self, sale, tipo, servicio):
"""
Retornamos el subtotal de los cargos
"""
subtotal_cargos = 0
if sale.lines:
for line in sale.lines:
if line.servicio == servicio:
if line.type == 'line' and line.product.tipo_producto == tipo:
if not line.product.sin_subsidio and not line.product.ocultar_en_impresion:
subtotal_cargos += Decimal(line.amount).quantize(Decimal(".01"), rounding=ROUND_DOWN)
return subtotal_cargos
def buscar_pos(self):
"""
Buscamos el punto de venta que vamos a usar para las facturas.
Este punto de venta deberia tener un PosSequence para cada tipo de factura (ver INVOICE_TYPE_AFIP_CODE
en account_invoice_ar/invoice.py).
"""
Pos = Pool().get('account.pos')
pos = Pos.search([('pos_type', '=', 'electronic'), ('number', '=', 1)])
return pos[0]
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'''FUNCIONES QUE CREAN LINEAS'''
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
#Todas las otras funciones crean con esta funcion
#Creo la columna servicio, para usar despues en el reporte
def crear_sale_line(self, amount, product, unit_price, sequence):
"""
Creamos una linea de ventas de acuerdo a los parametros que recibimos.
"""
SaleLine = Pool().get('sale.line')
#new_line = SaleLine(
# product=product,
# quantity=Decimal(round(amount,2)),
# description=product.name,
# unit=product.default_uom,
# unit_price = Decimal(unit_price),
# sequence = sequence,
# )
new_line = SaleLine()
new_line.product = product
new_line.on_change_product()
new_line.quantity = Decimal(round(amount,2))
new_line.on_change_quantity()
new_line.description = product.name
new_line.unit = product.default_uom
new_line.on_change_unit()
new_line.unit_price = Decimal(unit_price)
new_line.sequence = sequence
return new_line
def crear_sale_lines_independientes_consumo(self, party, product_name):
ret = []
#Obtenemos los productos que son cargos fijos, de la lista de precios que recibimos como parametro
productos = Pool().get('product.product').search([('name','=',product_name)])
#Chequeo que no haya factura de ese asegurado, posteada, con esa fecha
for producto in productos:
#Le agrego la sequence = 1 para cargos fijos
up = producto.list_price
ret.append(
self.crear_sale_line(1, producto, up, 1)
)
return ret
''''''''''''''''''''''''''''''''''''''
'''FUNCION MADRE QUE CREA LA VENTA'''
''''''''''''''''''''''''''''''''''''''
def crear_venta_padre(self, insurance_id):
insurance = Pool().get('gnuhealth.insurance')(insurance_id)
Invoice = Pool().get('account.invoice')
#Chequeo que no haya factura de ese asegurado, posteada, con esa fecha
invoice_facturada = Invoice.search([('invoice_date','=', self.fecha_emision_factura), ('insurance','=',insurance_id), ('state','=','posted')])
if not invoice_facturada:
#VENTA
Sale = Pool().get('sale.sale')
party = insurance.name
pos = self.buscar_pos()
with Transaction().set_context({"customer": party}):
#Creamos la venta a la que le vamos a asociar las lineas de venta
descripcion = str(insurance.name.name.encode('utf-8')) + " - " + str(insurance.plan_id.name.name.encode('utf-8'))
sale = Sale(
party = insurance.name,
description = descripcion,
pos = pos
)
#Creamos las lineas para los distintos tipos de productos
sale_lines = []
#1 Cargos Fijos
#Las lineas que no dependen del consumo, solo se crean una vez por venta
sale_lines.extend(self.crear_sale_lines_independientes_consumo(party, insurance.plan_id.name.name))
sale.lines = sale_lines
sale.save()
sale_lines = []
Tax = Pool().get('account.tax')
for i in sale.lines:
tax_browse_records = Tax.search([('name','=', 'IVA 21% Ventas')])
#tax_browse_records = Tax.browse([2]) or []
i.taxes = tax_browse_records
i.save()
#Controlo que no sea menor a cero el total
if sale.total_amount >= Decimal('0'):
#Avanzamos a presupuesto
sale.invoice_address = sale.party.address_get(type='invoice')
sale.shipment_address = sale.party.address_get(type='delivery')
sale.quote([sale])
#Avanzamos a confirmado
sale.confirm([sale])
#Avanzamos a procesado. En este estado se crea la factura
#de la venta.
sale.process([sale])
#Luego de ejecutar el workflow de la venta, la guardamos.
sale.save()
#Seteamos las fechas de creacion, vencimiento de la factura y recargo por vencimiento.
#Tambien seteamos el suministro.
hoy = datetime.date.today()
if sale.invoices:
if party.iva_condition == 'responsable_inscripto':
kind = 'A'
else:
kind = 'B'
sale.invoices[0].invoice_date = self.fecha_emision_factura
sale.invoices[0].pos = pos
sale.invoices[0].save()
PosSequence = Pool().get('account.pos.sequence')
invoice_type, invoice_type_desc = INVOICE_TYPE_AFIP_CODE[
('out', kind)
]
sequences = PosSequence.search([
('pos', '=', pos.id),
('invoice_type', '=', invoice_type)
])
sale.invoices[0].invoice_type = sequences[0].id
sale.invoices[0].pyafipws_concept = 2 # 2 es servicios
original = datetime.datetime.strptime(str(self.fecha_emision_factura) , "%Y-%m-%d")
desde = original + datetime.timedelta(days=1)
hasta = original + datetime.timedelta(days=31)
#sale.invoices[0].pyafipws_billing_start_date = self.fecha_emision_factura
#sale.invoices[0].pyafipws_billing_end_date = self.fecha_emision_factura
sale.invoices[0].pyafipws_billing_start_date = desde
sale.invoices[0].pyafipws_billing_end_date = hasta
sale.invoices[0].save()
#QUEDA EN BORRADOR
#Transaction().cursor.commit()
#self.actualizar_resumen_importacion(sale)
return True