|
eZ Publish
[4.2]
|
eZOrder handles orders More...
Inheritance diagram for eZOrder:
Collaboration diagram for eZOrder:Public Member Functions | |
| accountEmail () | |
| accountInformation () | |
| accountName () | |
| accountViewTemplate () | |
| activate () | |
| canModifyStatus ($statusID, $user=false) | |
| createStatusHistory () | |
| currencyCode ($collection=false) | |
| detachProductCollection () | |
| eZOrder ($row) | |
| modifyStatus ($statusID, $userID=false) | |
| orderInfo () | |
| orderItems () | |
| orderItemsByType ($itemType) | |
| orderTotalExVAT () | |
| orderTotalIncVAT () | |
| productCollection () | |
| productItems ($asObject=true) | |
| productTotalExVAT () | |
| productTotalIncVAT () | |
| purge ($removeCollection=true) | |
| removeCollection () | |
| removeHistory () | |
| removeOrderItems () | |
| setStatus ($status) | |
| setStatusModified ($timestamp) | |
| status ($asObject=false) | |
| statusModificationList ($user=false) | |
| statusName () | |
| statusObject () | |
| totalExVAT () | |
| totalIncVAT () | |
| totalVAT () | |
| user () | |
Static Public Member Functions | |
| static | active ($asObject=true, $offset, $limit, $sortField="created", $sortOrder="asc", $show=eZOrder::SHOW_NORMAL) |
| static | activeByUserID ($userID, $asObject=true) |
| static | activeCount ($show=eZOrder::SHOW_NORMAL) |
| static | archiveOrder ($orderID) |
| static | cleanup () |
| static | cleanupOrder ($orderID) |
| static | customerCount () |
| static | customerList ($offset, $limit) |
| static | definition () |
| static | discount ($userID, $object) |
| static | fetch ($id, $asObject=true) |
| static | fetchList ($asObject=true) |
| static | fetchLocaleCurrencyCode () |
| static | getShowOrdersQuery ($show, $table=null) |
| static | orderList ($CustomID, $Email) |
| static | orderStatistics ($year=false, $month=false) |
| static | productList ($CustomID, $Email) |
| static | removeItem ($itemID) |
| static | unArchiveOrder ($orderID) |
Public Attributes | |
| $Status | |
The cached status object or null if not cached yet. | |
| const | SHOW_ALL = 2 |
| const | SHOW_ARCHIVED = 1 |
| const | SHOW_NORMAL = 0 |
eZOrder handles orders
Definition at line 39 of file ezorder.php.
| eZOrder::accountEmail | ( | ) |
Definition at line 1052 of file ezorder.php.
| eZOrder::accountInformation | ( | ) |
Definition at line 1028 of file ezorder.php.
| eZOrder::accountName | ( | ) |
Definition at line 1040 of file ezorder.php.
| eZOrder::accountViewTemplate | ( | ) |
Definition at line 1342 of file ezorder.php.
| eZOrder::activate | ( | ) |
Creates a real order from the temporary state.
The ezorder has an internal (id) and an external (order_nr) ID. The ID will be set as soon as a customer (who buys a product), approves the account information. A row is added to the ezorder table (the ID (auto_increment) is generated). This ID is needed for extensions, such as PaynetTerminal (The ID is given.)
The active (confirmed and paid) orders have an order_nr. This order_nr is generated as soon as the order is processed.
We use order_nr instead of the id to (externally) rever to an order:
Another solution would be to use an temporary_order table, instead of adding two IDs. I think (rb) this is a cleaner solution.
Definition at line 1322 of file ezorder.php.
| static eZOrder::active | ( | $ | asObject = true, |
| $ | offset, | ||
| $ | limit, | ||
| $ | sortField = "created", |
||
| $ | sortOrder = "asc", |
||
| $ | show = eZOrder::SHOW_NORMAL |
||
| ) | [static] |
Definition at line 232 of file ezorder.php.
| static eZOrder::activeByUserID | ( | $ | userID, |
| $ | asObject = true |
||
| ) | [static] |
Definition at line 205 of file ezorder.php.
| static eZOrder::activeCount | ( | $ | show = eZOrder::SHOW_NORMAL | ) | [static] |
Definition at line 288 of file ezorder.php.
| static eZOrder::archiveOrder | ( | $ | orderID | ) | [static] |
Archive an order.
Definition at line 1382 of file ezorder.php.
| eZOrder::canModifyStatus | ( | $ | statusID, |
| $ | user = false |
||
| ) |
true if the user $user can modify the status to $statusID Definition at line 1074 of file ezorder.php.
| static eZOrder::cleanup | ( | ) | [static] |
Removes all orders from the database.
Definition at line 1408 of file ezorder.php.
| static eZOrder::cleanupOrder | ( | $ | orderID | ) | [static] |
Removes an order and its related data from the database.
Definition at line 1353 of file ezorder.php.
| eZOrder::createStatusHistory | ( | ) |
Creates a status history element from the the current status information and stores it in the database.
Definition at line 1241 of file ezorder.php.
Referenced by activate().
| eZOrder::currencyCode | ( | $ | collection = false | ) |
| $collection | may contain:
|
Definition at line 1560 of file ezorder.php.
| static eZOrder::customerCount | ( | ) | [static] |
Definition at line 608 of file ezorder.php.
| static eZOrder::customerList | ( | $ | offset, |
| $ | limit | ||
| ) | [static] |
Definition at line 618 of file ezorder.php.
| static eZOrder::definition | ( | ) | [static] |
The definition array is an associative array consists of these keys:
asc or desc.Example:
static function definition() { return array( "fields" => array( "id" => "ID", "version" => "Version", "name" => "Name" ), "keys" => array( "id", "version" ), "function_attributes" => array( "current" => "currentVersion", "class_name" => "className" ), "increment_key" => "id", "class_name" => "eZContentClass", "sort" => array( "id" => "asc" ), "name" => "ezcontentclass" ); }
Reimplemented from eZPersistentObject.
Definition at line 51 of file ezorder.php.
Referenced by active(), activeByUserID(), fetch(), and fetchList().
| eZOrder::detachProductCollection | ( | ) |
Makes a copy of the product collection it currently points to and sets the copied collection as the current collection.
false if something failed. Definition at line 156 of file ezorder.php.
| static eZOrder::discount | ( | $ | userID, |
| $ | object | ||
| ) | [static] |
Definition at line 782 of file ezorder.php.
| eZOrder::eZOrder | ( | $ | row | ) |
Definition at line 45 of file ezorder.php.
Referenced by active(), and orderList().
| static eZOrder::fetch | ( | $ | id, |
| $ | asObject = true |
||
| ) | [static] |
Definition at line 189 of file ezorder.php.
Referenced by canModifyStatus(), currencyCode(), customerList(), discount(), eZSimpleShippingType\execute(), orderStatistics(), productCollection(), productList(), removeCollection(), removeItem(), status(), statusModificationList(), and user().
| static eZOrder::fetchList | ( | $ | asObject = true | ) | [static] |
Definition at line 197 of file ezorder.php.
Referenced by orderItems().
| static eZOrder::fetchLocaleCurrencyCode | ( | ) | [static] |
Definition at line 1587 of file ezorder.php.
Referenced by currencyCode(), customerList(), orderStatistics(), and productList().
| static eZOrder::getShowOrdersQuery | ( | $ | show, |
| $ | table = null |
||
| ) | [static] |
Definition at line 215 of file ezorder.php.
Referenced by activeCount().
| eZOrder::modifyStatus | ( | $ | statusID, |
| $ | userID = false |
||
| ) |
Modifies the status on the order to $statusID. It will store the previous status in the history list using $userID.
| $statusID | The ID of the status that is to be set, this must be the global ID not the DB ID. |
| $userID | The ID of the user that did the change, if false it will fetch the current user ID. |
Definition at line 1213 of file ezorder.php.
| eZOrder::orderInfo | ( | ) |
Definition at line 1433 of file ezorder.php.
| eZOrder::orderItems | ( | ) |
Definition at line 1002 of file ezorder.php.
Referenced by orderInfo(), orderTotalExVAT(), and orderTotalIncVAT().
| eZOrder::orderItemsByType | ( | $ | itemType | ) |
| $type | Order item type |
Definition at line 1011 of file ezorder.php.
| static eZOrder::orderList | ( | $ | CustomID, |
| $ | |||
| ) | [static] |
Definition at line 443 of file ezorder.php.
| static eZOrder::orderStatistics | ( | $ | year = false, |
| $ | month = false |
||
| ) | [static] |
Definition at line 301 of file ezorder.php.
| eZOrder::orderTotalExVAT | ( | ) |
Definition at line 906 of file ezorder.php.
Referenced by totalExVAT().
| eZOrder::orderTotalIncVAT | ( | ) |
Definition at line 891 of file ezorder.php.
Referenced by totalIncVAT().
| eZOrder::productCollection | ( | ) |
Definition at line 184 of file ezorder.php.
Referenced by detachProductCollection().
| eZOrder::productItems | ( | $ | asObject = true | ) |
Definition at line 791 of file ezorder.php.
Referenced by orderInfo(), productTotalExVAT(), and productTotalIncVAT().
| static eZOrder::productList | ( | $ | CustomID, |
| $ | |||
| ) | [static] |
Definition at line 476 of file ezorder.php.
| eZOrder::productTotalExVAT | ( | ) |
Definition at line 879 of file ezorder.php.
Referenced by totalExVAT().
| eZOrder::productTotalIncVAT | ( | ) |
Definition at line 867 of file ezorder.php.
Referenced by totalIncVAT().
| eZOrder::purge | ( | $ | removeCollection = true | ) |
Removes the order.
shop/confirmorder calls this method passing $removeCollection set to false to purge the order if the user doesn't confirm it. Removing the product collection in this case would cause fatal error.
| $removeCollection | (bool) specifies if we should remove product collection the order uses. |
Definition at line 942 of file ezorder.php.
| eZOrder::removeCollection | ( | ) |
Removes the product collection this order uses.
Definition at line 959 of file ezorder.php.
Referenced by purge().
| eZOrder::removeHistory | ( | ) |
Removes the order status history for this order.
Definition at line 969 of file ezorder.php.
Referenced by purge().
| static eZOrder::removeItem | ( | $ | itemID | ) | [static] |
Removes the product collection item $itemID.
Definition at line 988 of file ezorder.php.
| eZOrder::removeOrderItems | ( | ) |
Definition at line 976 of file ezorder.php.
Referenced by purge().
| eZOrder::setStatus | ( | $ | status | ) |
Sets the status ID to $status and updates the status modification timestamp.
Definition at line 1255 of file ezorder.php.
| eZOrder::setStatusModified | ( | $ | timestamp | ) |
Sets the modification time of the status change to $timestamp.
Definition at line 1267 of file ezorder.php.
Referenced by setStatus().
| eZOrder::status | ( | $ | asObject = false | ) |
true, otherwise the status ID. Definition at line 1063 of file ezorder.php.
| eZOrder::statusModificationList | ( | $ | user = false | ) |
Definition at line 1130 of file ezorder.php.
| eZOrder::statusName | ( | ) |
Definition at line 1277 of file ezorder.php.
| eZOrder::statusObject | ( | ) |
Definition at line 1291 of file ezorder.php.
| eZOrder::totalExVAT | ( | ) |
Definition at line 926 of file ezorder.php.
| eZOrder::totalIncVAT | ( | ) |
Definition at line 921 of file ezorder.php.
| eZOrder::totalVAT | ( | ) |
Definition at line 997 of file ezorder.php.
| static eZOrder::unArchiveOrder | ( | $ | orderID | ) | [static] |
Unarchive an order, make it 'normal' again.
Definition at line 1395 of file ezorder.php.
| eZOrder::user | ( | ) |
Definition at line 1019 of file ezorder.php.
| eZOrder::$Status |
The cached status object or null if not cached yet.
Definition at line 1596 of file ezorder.php.
| const eZOrder::SHOW_ALL = 2 |
Definition at line 43 of file ezorder.php.
Referenced by active(), and getShowOrdersQuery().
| const eZOrder::SHOW_ARCHIVED = 1 |
Definition at line 42 of file ezorder.php.
Referenced by getShowOrdersQuery().
| const eZOrder::SHOW_NORMAL = 0 |
Definition at line 41 of file ezorder.php.
Referenced by getShowOrdersQuery().