ShopPurchase.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. namespace app\data\model;
  3. use app\data\model\helpers\PurchaseShow;
  4. use Carbon\Carbon;
  5. use think\admin\Model;
  6. use think\db\Query;
  7. use think\facade\Db;
  8. use think\helper\Arr;
  9. class ShopPurchase extends Model
  10. {
  11. use PurchaseShow;
  12. protected $append=[
  13. 'tab',
  14. ];
  15. protected $type=[
  16. 'images'=>'array',
  17. ];
  18. public static $status=[
  19. 0=>'已取消',
  20. 1=>'未报价',
  21. 2=>'已报价',
  22. 3=>'已匹配',
  23. ];
  24. /**
  25. * @return string[]
  26. */
  27. public static function getStatus(): array
  28. {
  29. return self::$status;
  30. }
  31. public function merchant(){
  32. return $this->belongsTo(DataMerchants::class,'admin_id','admin_id');
  33. }
  34. public function items(){
  35. return $this->hasMany(ShopPurchaseItem::class,'purchase_id');
  36. }
  37. public function favourite(){
  38. return $this->morphMany(ShopFavourite::class,'target',$this->getTable());
  39. }
  40. public function msgs(){
  41. return $this->morphMany(ShopPurchaseMsg::class,'target',$this->getTable());
  42. }
  43. /**
  44. * @return static
  45. */
  46. public static function getQuery($tab){
  47. $arr=[
  48. 1=>new ShopPurchase,
  49. 2=>new ShopProduction,
  50. 3=>new ShopCoordination,
  51. 4=>new ShopOcean,
  52. ];
  53. return Arr::get($arr, $tab)->newQuery()->show();
  54. }
  55. /**
  56. * @return static
  57. */
  58. public static function getOffer($tab){
  59. $arr=[
  60. 1=>new ShopPurchaseOffer,
  61. 2=>new ShopProductionOffer,
  62. 3=>new ShopCoordinationOffer,
  63. 4=>new ShopOceanOffer,
  64. ];
  65. return Arr::get($arr,$tab)->newQuery();
  66. }
  67. /**
  68. * @return static
  69. */
  70. public static function getItem($tab,$admin_id=null){
  71. $arr=[
  72. 1=>new ShopPurchaseItem,
  73. 2=>new ShopProduction,
  74. 3=>new ShopCoordination,
  75. 4=>new ShopOcean,
  76. ];
  77. $query=Arr::get($arr,$tab)->newQuery();
  78. if(!is_null($admin_id)){
  79. if($tab==1){
  80. $query->whereExists(
  81. ShopPurchase::where('admin_id',$admin_id)
  82. ->where('id',Db::raw("{$query->getTable()}.purchase_id"))
  83. ->buildSql()
  84. );
  85. }else{
  86. $query->where('admin_id',$admin_id);
  87. }
  88. }
  89. return $query;
  90. }
  91. public static function getOfferKey($tab){
  92. $arr=[
  93. 1=>'order_id',
  94. 2=>'production_id',
  95. 3=>'corrdination_id',
  96. 4=>'ocea_id',
  97. ];
  98. return Arr::get($arr,$tab);
  99. }
  100. public static function is_fav($model,$user){
  101. $model['is_fav']=(bool)$model->favourite()->where('user_id',$user['id'])->value('id');
  102. }
  103. public function getTabAttr(){
  104. return 1;
  105. }
  106. public static function onBeforeInsert(self $model)
  107. {
  108. $model['order_no']=sprintf('%s%s','Cbz',str_replace(['-',' ','.',':'],'',Carbon::now()->toDateTimeString('microsecond')));
  109. }
  110. }