| Line 174... |
Line 174... |
| 174 |
productCondition = Field(Integer, default=0, server_default="0")
|
174 |
productCondition = Field(Integer, default=0, server_default="0")
|
| 175 |
dataProtectionInsurer = Field(Integer, default=0, server_default="0")
|
175 |
dataProtectionInsurer = Field(Integer, default=0, server_default="0")
|
| 176 |
dataProtectionAmount = Field(Float, default=0, server_default="0")
|
176 |
dataProtectionAmount = Field(Float, default=0, server_default="0")
|
| 177 |
taxType = Field(Integer, default=0, server_default="0")
|
177 |
taxType = Field(Integer, default=0, server_default="0")
|
| 178 |
logisticsTransactionId = Field(String(100))
|
178 |
logisticsTransactionId = Field(String(100))
|
| - |
|
179 |
shippingCost = Field(Float, default=0, server_default="0")
|
| - |
|
180 |
codCharges = Field(Float, default=0, server_default="0")
|
| 179 |
using_options(shortnames=True)
|
181 |
using_options(shortnames=True)
|
| 180 |
using_table_options(mysql_engine="InnoDB")
|
182 |
using_table_options(mysql_engine="InnoDB")
|
| 181 |
|
183 |
|
| 182 |
class CodVerificationAgent(Entity):
|
184 |
class CodVerificationAgent(Entity):
|
| 183 |
orderId = Field(Integer, primary_key=True, autoincrement=True)
|
185 |
orderId = Field(Integer, primary_key=True, autoincrement=True)
|
| Line 196... |
Line 198... |
| 196 |
session_start_time = Field(DateTime)
|
198 |
session_start_time = Field(DateTime)
|
| 197 |
first_source = Field(String(100))
|
199 |
first_source = Field(String(100))
|
| 198 |
first_source_start_time = Field(DateTime)
|
200 |
first_source_start_time = Field(DateTime)
|
| 199 |
orders = OneToMany("Order")
|
201 |
orders = OneToMany("Order")
|
| 200 |
coupon_code = Field(String(20))
|
202 |
coupon_code = Field(String(20))
|
| - |
|
203 |
totalShippingCost = Field(Float, default=0, server_default="0")
|
| - |
|
204 |
totalCodCharges = Field(Float, default=0, server_default="0")
|
| 201 |
using_options(shortnames=True)
|
205 |
using_options(shortnames=True)
|
| 202 |
using_table_options(mysql_engine="InnoDB")
|
206 |
using_table_options(mysql_engine="InnoDB")
|
| 203 |
|
207 |
|
| 204 |
class Alert(Entity):
|
208 |
class Alert(Entity):
|
| 205 |
id = Field(Integer, primary_key=True, autoincrement=True)
|
209 |
id = Field(Integer, primary_key=True, autoincrement=True)
|