Refer to the following database diagram to gain an understanding of the database structure used by SoftSlate Commerce. For more details about the attributes of each table's fields, refer to the Database Dictionary .
Here is a list of some of the notable aspects of the database structure:
sscSetting
table stores all of the application's
settings. It is designed to store settings of various data types. For each record, the
value of the valueType
field identifies which field is used to
store the setting's value. In the application, the values are derived and
sscSetting
is converted into a
java.util.HashMap
in which the code
value is the map's key. This map is stored in the application scope.sscOrder
table. Incomplete orders store a representation of
the user's cart before completing checkout in the store. To test if a given order is
complete, check that its completed
field is not null. A tool
exists in the Administrator (under the Maintenance and
Upgrade
menu), to clear out old incomplete orders from the
database.sscOrder
and sscCustomer
tables store the user's billing address, where as the
sscOrderDelivery
and
sscCustomerAddress
tables store delivery addresses. There
may be many delivery addresses per order and per customer. However, the
application's code does not currently support the notion of delivering a single
order to multiple addresses, or storing multiple delivery addresses for each
customer account.Copyright © 2009-2017 SoftSlate, LLC. All Rights Reserved.
Powered by SoftSlate Commerce