本文整理汇总了PHP中OrderItem::findById方法的典型用法代码示例。如果您正苦于以下问题:PHP OrderItem::findById方法的具体用法?PHP OrderItem::findById怎么用?PHP OrderItem::findById使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OrderItem
的用法示例。
在下文中一共展示了OrderItem::findById方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: as_array
public function as_array()
{
$model = $this->_orm->as_array();
$model['new_product'] = Product::findById($this->new_product_id)->name;
$model['old_product'] = Product::findById($this->old_product_id)->name;
$model['order'] = OrderItem::findById($this->item_id)->order->id;
$model['user'] = OrderItem::findById($this->item_id)->order->user->profile->fullname;
return $model;
}
示例2: post
public static function post()
{
return function ($request, $response) {
$user_id = $request->session('id');
if ($user_id) {
$id = $request->id;
$item = OrderItem::findById($id);
if ($item) {
$data = $request->data();
$item->product = $data->new_product->id ? $data->new_product->id : $item->product;
$item->price = $data->new_product->price ? $data->new_product->price : $item->price;
$item->save();
$response->json($item->as_array());
} else {
$response->code(404);
}
} else {
$response->code(403);
}
};
}