X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=lib%2Ffunctions.php;h=fe442f820a2e90e6fe15d6ef3d511432b4cc9827;hb=643b013ffaadfb032001ed0dde02176a2c382313;hp=e970f54c529faaa6e2f6a9fabd93e7cf27ff4e7a;hpb=5707529d8056238ba42e16f55b23b15a5e8c4d9b;p=readifood.git diff --git a/lib/functions.php b/lib/functions.php index e970f54..fe442f8 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -239,6 +239,39 @@ return sprintf("%s on %s", get_order_parcel_string($order), $order->getDate()); } + function get_order_summary($order) { + $ret = "Order " . $order->getStrongLink($order->getId()) . ": " . get_order_displayname($order); + + if (check_admin(1)) $ret .= " " . $order->getDeleteLink(); + + /* XXX: Should pull from query. */ + $q = new ContactQuery; + $contact = $q->findOneById($order->getRequesterId()); + if ($contact) { + $ret .= " referred by " . $contact->getLink(); + $area = get_contact_area($contact); + if ($area) $ret .= " in " . $area->getLink(); + } + + $q = new ContactQuery; + $contact = $q->findOneById($order->getBeneficiaryId()); + if ($contact) { + $ret .= " for " . $contact->getLink(); + $area = get_contact_area($contact); + if ($area) $ret .= " in " . $area->getLink(); + } + + if ($order->getHubId()) { + $q = new HubQuery; + $hub = $q->findOneById($order->getHubId()); + if ($hub) $ret .= " to hub " . $hub->getLink(); + $area = get_hub_area($hub); + if ($area) $ret .= " in " . $area->getLink(); + } + + return $ret; + } + function get_address_area($address) { $q = new AreaQuery; return $q->findOneById($address->getAreaId());