You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

214 lines
7.2 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\data\ActiveDataProvider;
  5. use yii\helpers\ArrayHelper;
  6. /**
  7. * This is the model class for table "opera_tailor_product".
  8. *
  9. * @property integer $id
  10. * @property integer $cancel_flag
  11. * @property string $create_time
  12. * @property string $update_time
  13. * @property integer $create_user_id
  14. * @property integer $update_user_id
  15. * @property integer $main_corp_id
  16. * @property string $tailor_product_name
  17. * @property string $tailor_product_code
  18. * @property integer $supplier_id
  19. * @property integer $prod_type
  20. * @property integer $is_onsale
  21. * @property string $product_price
  22. * @property string $cost_price
  23. * @property string $memo
  24. */
  25. class OperaTailorProduct extends \yii\db\ActiveRecord
  26. {
  27. public $res_arr;
  28. public $tp_res_select;
  29. const PROD_TYPE_ARR = [701 => '全城接', 702 => '全城送'];
  30. const TAILOR_TYPE_PARENT = 700;
  31. /**
  32. * @inheritdoc
  33. */
  34. public static function tableName()
  35. {
  36. return 'opera_tailor_product';
  37. }
  38. /**
  39. * @inheritdoc
  40. */
  41. public function rules()
  42. {
  43. return [
  44. [['cancel_flag', 'create_time', 'update_time', 'create_user_id', 'update_user_id', 'main_corp_id', 'tailor_product_name', 'tailor_product_code', 'supplier_id', 'prod_type', 'is_onsale', 'product_price', 'cost_price', 'memo'], 'required'],
  45. [['cancel_flag', 'create_user_id', 'update_user_id', 'main_corp_id', 'supplier_id', 'prod_type', 'is_onsale'], 'integer'],
  46. [['product_price', 'cost_price'], 'number'],
  47. [['create_time'], 'string', 'max' => 20],
  48. [['tailor_product_name', 'tailor_product_code'], 'string', 'max' => 50],
  49. [['memo'], 'string', 'max' => 200],
  50. ];
  51. }
  52. /**
  53. * @inheritdoc
  54. */
  55. public function attributeLabels()
  56. {
  57. return [
  58. 'id' => '产品id',
  59. 'cancel_flag' => 'Cancel Flag',
  60. 'create_time' => 'Create Time',
  61. 'update_time' => 'Update Time',
  62. 'create_user_id' => 'Create User ID',
  63. 'update_user_id' => 'Update User ID',
  64. 'main_corp_id' => '运营主体id',
  65. 'tailor_product_name' => '产品名称',
  66. 'tailor_product_code' => '产品编号',
  67. 'supplier_id' => '产品供应商id',
  68. 'prod_type' => '产品类型',
  69. 'is_onsale' => '产品上下架 0为下架 1为上架',
  70. 'product_price' => '产品售价',
  71. 'cost_price' => '产品成本价',
  72. 'memo' => '产品备注',
  73. 'tp_res_select' => '选择站点',
  74. ];
  75. }
  76. /**
  77. * Function Description:获取站点列表
  78. * Function Name: getIndex
  79. *
  80. *
  81. * @author LUOCJ
  82. */
  83. public function getIndex($data)
  84. {
  85. $base_user = new BaseUser();
  86. $user_main_corp = $base_user->getMainCorp();
  87. $query = self::find()->where(['and', ['=', 'cancel_flag', 0]])->orderBy('`create_time` desc');
  88. $dataProvider = new ActiveDataProvider([
  89. 'query' => $query,
  90. ]);
  91. $query->andFilterWhere(['=', 'main_corp_id', $user_main_corp]);
  92. if (isset($data['product_name']))
  93. $query->andFilterWhere(['like', 'tailor_product_name', $data['product_name']]);
  94. if (isset($data['product_code']))
  95. $query->andFilterWhere(['like', 'tailor_product_code', $data['product_code']]);
  96. if (isset($data['is_onsale']) && $data['is_onsale'] != -1)
  97. $query->andFilterWhere(['=', 'is_onsale', $data['is_onsale']]);
  98. return $dataProvider;
  99. }
  100. /**
  101. * @param $id_str
  102. *
  103. * @return bool
  104. *
  105. * 组合产品上架控制 $id_str:1, 1,2,3, $op: up 上架 down 下架 delete 删除
  106. */
  107. public static function isOnSaleControl($id_str, $op)
  108. {
  109. if ($op == 'up') {
  110. $change_value = 1;
  111. $change_attr = 'is_onsale';
  112. } elseif ($op == 'down') {
  113. $change_value = 0;
  114. $change_attr = 'is_onsale';
  115. } elseif ($op == 'delete') {
  116. $change_value = 1;
  117. $change_attr = 'cancel_flag';
  118. } else {
  119. return $data['code'] = 1;
  120. }
  121. $id_str = substr($id_str, 0, -1);
  122. $id_arr = explode(',', $id_str);
  123. $result = Yii::$app->db
  124. ->createCommand("update opera_tailor_product set opera_tailor_product.$change_attr = :change_value where opera_tailor_product.id = :id_arr")
  125. ->bindValues([':change_value' => $change_value, ':id_arr' => $id_str])
  126. ->execute();
  127. if (!$result || $result <= 0)
  128. return $data['code'] = 1;
  129. else
  130. return $data['code'] = 0;
  131. }
  132. /**
  133. * Function Description:获取动态产品列表有条件
  134. * Function Name: getTailorType
  135. *
  136. * @return array
  137. *
  138. * @author LUOCJ
  139. */
  140. public static function getProduct($prod_type)
  141. {
  142. $data = self::find()->select(['id', 'tailor_product_name'])->where(['cancel_flag' => 0, 'is_onsale' => 1, 'prod_type' => $prod_type, 'main_corp_id' => self::getMainCorpId()])->asArray()->all();
  143. $result = ArrayHelper::map($data, 'id', 'tailor_product_name');
  144. return ['' => '请选择'] + $result;
  145. }
  146. /**
  147. * Function Description:获取动态产品列表无条件
  148. * Function Name: getTailorType
  149. *
  150. * @return array
  151. *
  152. * @author LUOCJ
  153. */
  154. public static function getProductAll()
  155. {
  156. $data = self::find()->select(['id', 'tailor_product_name'])->where(['cancel_flag' => 0, 'is_onsale' => 1, 'main_corp_id' => self::getMainCorpId()])->asArray()->all();
  157. $result = ArrayHelper::map($data, 'id', 'tailor_product_name');
  158. return ['' => '请选择'] + $result;
  159. }
  160. /**
  161. * Function Description:获取动态产品站点列表
  162. * Function Name: getStation
  163. *
  164. * @return array
  165. *
  166. * @author LUOCJ
  167. */
  168. public static function getStation($product_id)
  169. {
  170. $data = OperaTailorProductStation::find()->select(['base_resource.res_id', 'base_resource.res_name'])->innerJoin('base_resource', 'base_resource.res_id = opera_tailor_product_station.res_id')->where(['opera_tailor_product_station.cancel_flag' => 0, 'opera_tailor_product_station.product_id' => $product_id, 'opera_tailor_product_station.main_corp_id' => self::getMainCorpId()])->asArray()->all();
  171. $result = ArrayHelper::map($data, 'res_id', 'res_name');
  172. return ['' => '请选择'] + $result;
  173. }
  174. /**
  175. * Function Description:获取动态产品类型列表
  176. * Function Name: getTailorType
  177. *
  178. * @return array
  179. *
  180. * @author LUOCJ
  181. */
  182. public static function getTailorType()
  183. {
  184. $data = DictType::find()->select(['id', 'type_name'])->where(['parent_id' => self::TAILOR_TYPE_PARENT])->asArray()->all();
  185. $result = ArrayHelper::map($data, 'id', 'type_name');
  186. return ['' => '请选择'] + $result;
  187. }
  188. public static function getMainCorpId()
  189. {
  190. $base_user = new BaseUser();
  191. $cookies = Yii::$app->request->cookies;
  192. $user_id = $cookies->getValue('user_id', -1);
  193. $main_corp_id = $base_user::find()->select('main_corp_id')->from('base_user')->where(['ID' => $user_id])->asArray()->one();
  194. return $main_corp_id;
  195. }
  196. }