Пример #1
0
def main():
    t = Transaction()
    s = CRUDController.fromXmlFile('point_of_sale.xml')
    s.store = t
    a = Application()
    s.parent = Application()
    s.show()
    a.run()
Пример #2
0
def main():
    t = Transaction()
    s = CRUDController.fromXmlFile('point_of_sale.xml')
    s.store = t
    a = Application()
    s.parent = Application()
    s.show()
    a.run()
Пример #3
0
from fvl.cimarron.skin import CRUDController, Application
from fvl.luca.transaction import Transaction

t = Transaction()
s = CRUDController.fromXmlFile('person.xml')
s.store = t
a = Application()
s.parent = a
s.show()
a.run()
Пример #4
0
from fvl.cimarron.skin import CRUDController, Application
from fvl.luca.transaction import Transaction

t = Transaction()
s = CRUDController.fromXmlFile('client.xml')
s.store = t
a = Application()
s.parent = a
s.show()
a.run()
Пример #5
0
from fvl import cimarron
from fvl.cimarron.skin import CRUDController, Application
from fvl.luca.transaction import Transaction

t = Transaction()
s = CRUDController.fromXmlFile("product.xml")
s.store = t
a = Application()
s.parent = a
s.show()
a.run()
Пример #6
0
from fvl import cimarron
from fvl.cimarron.skin import CRUDController, Application
from fvl.luca.transaction import Transaction

t = Transaction()
s = CRUDController.fromXmlFile('product.xml')
s.store = t
a = Application ()
s.parent = a
s.show()
a.run()