$template->previous[$o->id()] = array(
'number' => $o->id(),
- 'paid' => $o->paid(),
- 'url' => $system->url('order',$o->id())
+ 'paid' => $o->paid()
);
foreach($purchases as $p){
$template->previous[$o->id()]['purchases'][$p->id()] = array(
'name' => $o->name(),
'price' => $o->price(),
- 'dining' => $o->dining()
+ 'type' => $o->type()
);
}
}
$template->new[$p->id()] = array(
'name' => $o->name(),
'price' => $o->price(),
- 'dining' => $o->dining(),
+ 'type' => $o->type(),
'delete' => $system->url('delete', $p->id())
);
}