Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

124 linhas
3.9 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\Expression;
  5. /**
  6. * This is the model class for table "order_group_connect".
  7. *
  8. * @property integer $id
  9. * @property integer $order_title_id
  10. * @property integer $order_main_id
  11. * @property integer $order_type
  12. * @property integer $cancel_flag
  13. * @property string $create_time
  14. * @property string $update_time
  15. * @property integer $create_user_id
  16. * @property string $create_date
  17. */
  18. class OrderGroupConnect extends \yii\db\ActiveRecord
  19. {
  20. /**
  21. * @inheritdoc
  22. */
  23. public static function tableName()
  24. {
  25. return 'order_group_connect';
  26. }
  27. /**
  28. * @inheritdoc
  29. */
  30. public function rules()
  31. {
  32. return [
  33. [['order_title_id', 'order_main_id'], 'required'],
  34. [['order_title_id', 'order_main_id', 'order_type', 'cancel_flag', 'create_user_id'], 'integer'],
  35. [['create_time', 'update_time'], 'string', 'max' => 20],
  36. [['create_date'], 'string', 'max' => 10],
  37. ];
  38. }
  39. /**
  40. * @inheritdoc
  41. */
  42. public function attributeLabels()
  43. {
  44. return [
  45. 'id' => 'ID',
  46. 'order_title_id' => 'Order Title ID',
  47. 'order_main_id' => 'Order Main ID',
  48. 'order_type' => 'Order Type',
  49. 'cancel_flag' => 'Cancel Flag',
  50. 'create_time' => 'Create Time',
  51. 'update_time' => 'Update Time',
  52. 'create_user_id' => 'Create User ID',
  53. 'create_date' => 'Create Date',
  54. ];
  55. }
  56. /**
  57. * Function Description:组合订单列表获取相关信息
  58. * Function Name: getInfoForGroupList
  59. * @param $order_id
  60. *
  61. * @return array|\yii\db\ActiveRecord[]
  62. *
  63. * @author 娄梦宁
  64. */
  65. public function getInfoForGroupList($order_id){
  66. $select=[
  67. 'order_id',
  68. 'parent_prod_name'=>'IF(parent_prod_name="",prod_name,parent_prod_name)',
  69. 'type'=>'(select type_name from dict_type where id=order_status)',
  70. 'resource_type'=>'a.order_type',
  71. 'sub_order_status'=>'b.order_status',
  72. 'customer_memo'
  73. ];
  74. $result=self::find()->select($select)
  75. ->from(self::tableName().' as a')
  76. ->leftJoin('order_main b','a.order_main_id=b.order_id')
  77. ->where(['and',['=','a.order_title_id',$order_id],['=','a.cancel_flag',0],['=','b.cancel_flag',0]])
  78. ->groupBy('a.id')
  79. ->asArray()
  80. ->all();
  81. return $result;
  82. }
  83. /**
  84. * Function Description:通过主订单id查所有子订单相关状态
  85. * Function Name: getStatusByTitle
  86. * @param $order_title_id
  87. *
  88. * @return array|\yii\db\ActiveRecord[]
  89. *
  90. * @author 娄梦宁
  91. */
  92. public function getStatusByTitle($order_title_id){
  93. $result=self::find()
  94. ->select('a.order_type,b.order_status')
  95. ->from(self::tableName().' as a ')
  96. ->leftJoin('order_main b','a.order_main_id=b.order_id')
  97. ->where(['and',['=','a.order_title_id',$order_title_id],['=','a.cancel_flag',0],['=','b.cancel_flag',0]])
  98. ->asArray()
  99. ->all();
  100. return $result;
  101. }
  102. /*
  103. * 查出组合订单最后结束的日期
  104. */
  105. public function getMaxDate($order_title_id){
  106. $result=self::find()->select('if(max(b.prod_end_station_date)>max(c.prod_end_station_date),if(max(b.prod_end_station_date)>max(c.run_date),max(b.prod_end_station_date),max(c.run_date)),if(max(c.prod_end_station_date)>max(c.run_date),max(c.prod_end_station_date),max(c.run_date))) as max_date')
  107. ->from(self::tableName().' as a')
  108. ->leftJoin('order_main b','a.order_main_id=b.order_id')
  109. ->leftJoin('order_main c','a.order_main_id=c.parent_order_id')
  110. ->where(['and',['=','a.cancel_flag',0],['=','a.order_title_id',$order_title_id]])
  111. ->asArray()
  112. ->one();
  113. return $result;
  114. }
  115. }