I have these tables:
db.define_table('marcas_definiciones',
Field('marca', 'string', label=T('Marca GG')),
Field('razon_zocial_gg', 'reference razones_zociales_gg'),
Field('ruc', 'string...
I have this table:
db.define_table('cotizaciones',
Field('numero_ticket', 'reference tickets'),
Field('numero_cotizacion', 'string'),
Field('fecha_registro_cotizacion', 'date', default=now),...
This is my billing table
db.define_table('facturacion',
Field('numero_comprobante', 'string'),
Field('numero_cotizacion', 'reference cotizaciones'),
Field('cliente', 'reference clientes'),...
Dear, I have a problem, I want to convert the app created in Web2Py in an .exe app, but when I run cx-freeze it tells me this error:
Traceback (most recent call last):
File "setup.py", line 10, in <module>
from cx_Freeze import...
Good morning, I have a problem ...
I'm using a SQLFORM.smartgrid with subtables like this:
def personal():
response.view = 'controll/default.html'
form = SQLFORM.smartgrid(db.personal, linked_tables=[
'visitas',
'presupuestos',
],
csv=F...