当前位置: 首页>>代码示例>>PHP>>正文


PHP OrderItem::findById方法代码示例

本文整理汇总了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;
 }
开发者ID:samdubey,项目名称:ads2,代码行数:9,代码来源:retex.php

示例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);
         }
     };
 }
开发者ID:samdubey,项目名称:ads2,代码行数:21,代码来源:orderitemctrl.php


注:本文中的OrderItem::findById方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。