Subversion Repositories SmartDukaan

Rev

Rev 4444 | Rev 4600 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4444 Rev 4501
Line 1... Line 1...
1
'''
1
'''
2
Created on 29-Mar-2010
2
Created on 29-Mar-2010
3
 
3
 
4
@author: ashish
4
@author: ashish
5
'''
5
'''
6
 
-
 
7
from elixir import *
6
from elixir import metadata, setup_all
8
from elixir.entity import Entity
7
from elixir.entity import Entity
9
from elixir.fields import Field
8
from elixir.fields import Field
10
from elixir.relationships import OneToMany, ManyToOne
9
from elixir.options import using_options, using_table_options
11
from shop2020.model.v1.order.impl.model import ReturnOrder
10
from elixir.relationships import ManyToOne, OneToMany
12
from shop2020.thriftpy.model.v1.order.ttypes import ExtraTransactionProcessingType
-
 
13
from sqlalchemy import create_engine
11
from sqlalchemy.engine import create_engine
14
from sqlalchemy.types import Integer, Boolean
12
from sqlalchemy.types import Integer, String, Float, DateTime, Boolean, Enum
15
import datetime
-
 
16
import elixir
-
 
17
 
-
 
18
 
13
 
19
#===============================================================================
14
#===============================================================================
20
# Different entities in the model
15
# Different entities in the model
21
#===============================================================================
16
#===============================================================================
22
 
17