FyySqlServerService.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace App\Service;
  3. use Illuminate\Support\Facades\DB;
  4. class FyySqlServerService extends Service
  5. {
  6. public $db = null;
  7. public function __construct()
  8. {
  9. $domain_name = $_SERVER['HTTP_HOST'];
  10. if(! $this->db) $this->db = DB::connection('sqlsrvs');
  11. }
  12. private function fakeData(){
  13. $return = [
  14. [
  15. 'out_order_no' => '001',
  16. 'out_order_no_time' => 1685928995,
  17. 'customer_no' => '201603012',
  18. 'customer_name' => '巴大胡',
  19. 'table_header_mark' => '表头备注',
  20. 'product_no' => '产品编码001',
  21. 'product_title' => '产品名称001',
  22. 'product_size' => '产品规格30c',
  23. 'product_unit' => '产品单位米',
  24. 'product_quantity' => 100,
  25. 'product_quantity_on_hand' => 50,
  26. 'technology_material' => '工艺材质',
  27. 'technology_name' => '工艺名称:同命',
  28. 'wood_name' => '木皮名称:梭梭树皮',
  29. 'process_mark' => '加工备注',
  30. 'table_body_mark' => '表体备注',
  31. 'out_crt_man' => '外部人员一',
  32. 'out_checker_man' => '外部人员二',
  33. 'out_checker_time' => 1685928995,
  34. ],
  35. [
  36. 'out_order_no' => '001',
  37. 'out_order_no_time' => 1685928995,
  38. 'customer_no' => '201603012',
  39. 'customer_name' => '巴大胡',
  40. 'table_header_mark' => '表头备注',
  41. 'product_no' => '产品编码002',
  42. 'product_title' => '产品名称002',
  43. 'product_size' => '产品规格30d',
  44. 'product_unit' => '产品单位米',
  45. 'product_quantity' => 100,
  46. 'product_quantity_on_hand' => 50,
  47. 'technology_material' => '工艺材质',
  48. 'technology_name' => '工艺名称:同命',
  49. 'wood_name' => '木皮名称:梭梭树皮',
  50. 'process_mark' => '加工备注',
  51. 'table_body_mark' => '表体备注',
  52. 'out_crt_man' => '外部人员一',
  53. 'out_checker_man' => '外部人员二',
  54. 'out_checker_time' => 1685928995,
  55. ],
  56. [
  57. 'out_order_no' => '002',
  58. 'out_order_no_time' => 1685928995,
  59. 'customer_no' => '201603012',
  60. 'customer_name' => '巴大胡',
  61. 'table_header_mark' => '表头备注',
  62. 'product_no' => '产品编码002',
  63. 'product_title' => '产品名称002',
  64. 'product_size' => '产品规格30d',
  65. 'product_unit' => '产品单位米',
  66. 'product_quantity' => 100,
  67. 'product_quantity_on_hand' => 50,
  68. 'technology_material' => '工艺材质',
  69. 'technology_name' => '工艺名称:同命',
  70. 'wood_name' => '木皮名称:梭梭树皮',
  71. 'process_mark' => '加工备注',
  72. 'table_body_mark' => '表体备注',
  73. 'out_crt_man' => '外部人员一',
  74. 'out_checker_man' => '外部人员二',
  75. 'out_checker_time' => 1685928995,
  76. ],
  77. ];
  78. return $return;
  79. }
  80. //获取数据
  81. public function getDataFromSqlServer($data){
  82. if(empty($data['out_order_no_time'][0]) || empty($data['out_order_no_time'][1])) return [false,'制单日期不能为空!'];
  83. //查询产品主表副表数据
  84. date_default_timezone_set("PRC");
  85. $start = date('Y-m-d H:i:s.000',$data['out_order_no_time'][0]);
  86. $end = date('Y-m-d H:i:s.000',$data['out_order_no_time'][1]);
  87. $result = $this->db->table('SO_SOMain as a')
  88. ->leftJoin('SO_SODetails as b','b.cSOCode','a.cSOCode')
  89. ->whereBetween('a.dDate',[$start, $end])
  90. ->select('a.cSOCode as out_order_no','a.dDate as out_order_no_time','a.cCusCode as customer_no','a.cCusName as customer_name','a.cMemo as table_header_mark','a.cMaker as out_crt_man','a.cVerifier as out_checker_man','a.dverifydate as out_checker_time','b.cInvCode as product_no','b.iQuantity as product_quantity','b.cDefine28 as technology_material','b.cFree1 as technology_name','b.cFree2 as wood_name','b.cDefine30 as process_mark','b.cMemo as table_body_mark')
  91. ->get()->toArray();
  92. if(empty($result)) return [false,'暂无数据,更新结束!'];
  93. //查询附带的一些信息(比较少)
  94. $product_no = array_column($result,'product_no');
  95. $messageOne = $this->db->table('Inventory as a')
  96. ->join('ComputationUnit as b',function($join){
  97. $join->on('a.cGroupCode','=','b.cGroupCode')
  98. ->on('a.cComUnitCode','=','b.cComUnitCode');
  99. }, null,null,'left')
  100. ->whereIn('a.cInvCode',$product_no)
  101. ->select('a.cInvCode as product_no','a.cInvName as product_title','a.cInvStd as product_size','b.cComUnitName as product_unit')
  102. ->get()->toArray();
  103. $messageMap = array_column($messageOne,null,'product_no');
  104. //组织查询条件
  105. $args = '';
  106. foreach ($result as $value){
  107. $product = $value->product_no;
  108. $technology_name = $value->technology_name ?? '';
  109. $wood_name = $value->wood_name ?? '';
  110. $args .= "(a.cInvCode = '{$product}' and a.cFree1 = '{$technology_name}' and a.cFree2 = '{$wood_name}') OR ";
  111. }
  112. $args = rtrim($args,'OR ');
  113. $messageTwo = $this->db->table('CurrentStock as a')
  114. ->leftJoin('Warehouse as b','b.cWhCode','a.cWhCode')
  115. ->whereRaw("($args)")
  116. ->where('a.iQuantity','>',0)
  117. ->select('a.iQuantity as product_quantity_on_hand','a.cInvCode as product_no','a.cFree1 as technology_name','a.cFree2 as wood_name','b.cWhName as warehouse_name')
  118. ->get()->toArray();
  119. $messageTwoTotal = [];
  120. if(! empty($messageTwo)){
  121. foreach ($messageTwo as $key => $value){
  122. $keys = $value->product_no . $value->technology_name . $value->wood_name;
  123. if(isset($messageTwoTotal[$keys])){
  124. $messageTwoTotal[$keys] += $value->product_quantity_on_hand;
  125. }else{
  126. $messageTwoTotal[$keys] = $value->product_quantity_on_hand;
  127. }
  128. $messageTwo[$key] = (array)$value;
  129. }
  130. }
  131. foreach ($result as $key => $value){
  132. $keys = $value->product_no . $value->technology_name . $value->wood_name;
  133. $result[$key]->out_order_no_time = $value->out_order_no_time ? strtotime($value->out_order_no_time) : 0;
  134. $result[$key]->product_title = $messageMap[$value->product_no]->product_title ?? '';
  135. $result[$key]->product_size = $messageMap[$value->product_no]->product_size ?? '';
  136. $result[$key]->product_unit = $messageMap[$value->product_no]->product_unit ?? '';
  137. $result[$key]->product_quantity_on_hand = $messageTwoTotal[$keys] ?? 0;
  138. $result[$key] = (array)$value;
  139. }
  140. return [true,$result,$messageTwo];
  141. }
  142. }