Tracking 

Setup only.

These are some settings if you want to change the display of the tracking page.

fields

fields
Type
string

Defines the fields of sys_products_orders to be shown in the select box of the orders.

Example:

fields for selector box
plugin.tt_products.tracking {
    fields = uid,name,tracking_code,amount,status,status_log,bill_no
}
Copied!

recordLine

recordLine
Type
string

Complete HTML line for the options tag of the order select box.

Example:

text for order selector box
plugin.tt_products.tracking {
    recordLine = ###ORDER_UID### (###ORDER_BILL_NO###): ###ORDER_NAME### (###ORDER_AMOUNT### ###CUR_SYM###) / ###ORDER_STATUS###) ###ORDER_CRDATE### ###LAST_ORDER_TYPE### ###LAST_ORDER_COUNT###
}
Copied!

recordType

recordType
Type
string

type of HTML selector for the orders select radio * checkbox

recordBox

recordBox
Type
string
Required

true

Example:

text for order selector box
plugin.tt_products.tracking {
    recordBox.wrap = <table id="thetable" cellspacing="0"><tbody> | </tbody></table>
}
Copied!

sql.where

sql.where
Type
string
Required

true

SQL where condition for the order select box. The enable fields will be added automatically.

Example:

text for order selector box
plugin.tt_products.tracking {
    sql.where = status!=0 AND status<100
}
Copied!

sql.orderBy

sql.orderBy
Type
string
Required

true

SQL order by clause for the order select box.

Example:

SQL order by for sorting
plugin.tt_products.tracking {
    sql.orderBy = crdate
}
Copied!