예제 #1
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def count(self, table, name):
     count = table(self.d, name)
     return count
예제 #2
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def table_tickets(self):
     tickets = table(self.d, "ticket")
     return tickets
예제 #3
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def table_ticketlinea(self):
     ticketlinea = table(self.d, "ticket_linea")
     return ticketlinea
예제 #4
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def table_botonera(self):
     botonera = table(self.d, "botonera")
     return botonera
예제 #5
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def table_pages_botonera(self):
     pages = table(self.d, "pages_botonera")
     return pages
예제 #6
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def table_family(self):
     family = table(self.d, "familia")
     return family
예제 #7
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def table_articles(self):
     articles = table(self.d, "articulos")
     return articles
예제 #8
0
파일: ddbb.py 프로젝트: jjrojoc/pytpv
 def table_clients(self):
     clientes = table(self.d, "clientes")
     return clientes