123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- <?php
- namespace App\Service;
- use App\Model\Orders;
- use App\Model\SaleOrdersProduct;
- use Illuminate\Support\Facades\Config;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Log;
- use Illuminate\Support\Facades\Redis;
- class FyySqlServerService extends Service
- {
- public $db = null;
- public $error = null;
- public $host = "";
- public $port = 0;
- public $database = "";
- public $url = "";
- public function __construct()
- {
- $fyy_array = Redis::get('fyy_sql_server');
- if(empty($fyy_array)) {
- $this->error = 'SQLSERVER设置不存在!';
- return;
- }
- $fyy_array = json_decode($fyy_array,true);
- $this->host = $fyy_array['sqlserver_host'] ?? '';
- $this->port = $fyy_array['sqlserver_port'] ?? 0;
- $this->database = $fyy_array['sqlserver_database'] ?? '';
- $this->url = empty($this->host)?: "http://" . $this->host . ":12365/U8Sys/U8API";
- if(! $this->db){
- $config = [
- 'driver' => 'sqlsrv',
- 'host' => $fyy_array['sqlserver_host'] ?? '',
- 'port' => $fyy_array['sqlserver_port'] ?? '',
- 'database' => $fyy_array['sqlserver_database'] ?? '',
- 'username' => env('SQLSRV_USERNAME'),
- 'password' => env('SQLSRV_PASSWORD'),
- ];
- // 进行数据库连接
- Config::set('database.connections.sqlsrvs', $config);
- try {
- $pdo = DB::connection('sqlsrvs')->getPdo();
- if ($pdo instanceof \PDO) {
- // 连接成功的逻辑代码
- $this->db = DB::connection('sqlsrvs');
- } else {
- $this->error = '连接失败!';
- return;
- }
- } catch (\Throwable $e) {
- $this->error = $e->getMessage();
- }
- }
- }
- private function fakeData(){
- $return = [
- [
- 'out_order_no' => '001',
- 'out_order_no_time' => 1685928995,
- 'customer_no' => '201603012',
- 'customer_name' => '巴大胡',
- 'table_header_mark' => '表头备注',
- 'product_no' => '产品编码001',
- 'product_title' => '产品名称001',
- 'product_size' => '产品规格30c',
- 'product_unit' => '产品单位米',
- 'order_quantity' => 100,
- 'product_quantity_on_hand' => 50,
- 'technology_material' => '工艺材质',
- 'technology_name' => '工艺名称:同命',
- 'wood_name' => '木皮名称:梭梭树皮',
- 'process_mark' => '加工备注',
- 'table_body_mark' => '表体备注',
- 'out_crt_man' => '外部人员一',
- 'out_checker_man' => '外部人员二',
- 'out_checker_time' => 1685928995,
- ],
- [
- 'out_order_no' => '001',
- 'out_order_no_time' => 1685928995,
- 'customer_no' => '201603012',
- 'customer_name' => '巴大胡',
- 'table_header_mark' => '表头备注',
- 'product_no' => '产品编码002',
- 'product_title' => '产品名称002',
- 'product_size' => '产品规格30d',
- 'product_unit' => '产品单位米',
- 'order_quantity' => 100,
- 'product_quantity_on_hand' => 50,
- 'technology_material' => '工艺材质',
- 'technology_name' => '工艺名称:同命',
- 'wood_name' => '木皮名称:梭梭树皮',
- 'process_mark' => '加工备注',
- 'table_body_mark' => '表体备注',
- 'out_crt_man' => '外部人员一',
- 'out_checker_man' => '外部人员二',
- 'out_checker_time' => 1685928995,
- ],
- [
- 'out_order_no' => '002',
- 'out_order_no_time' => 1685928995,
- 'customer_no' => '201603012',
- 'customer_name' => '巴大胡',
- 'table_header_mark' => '表头备注',
- 'product_no' => '产品编码002',
- 'product_title' => '产品名称002',
- 'product_size' => '产品规格30d',
- 'product_unit' => '产品单位米',
- 'order_quantity' => 100,
- 'product_quantity_on_hand' => 50,
- 'technology_material' => '工艺材质',
- 'technology_name' => '工艺名称:同命',
- 'wood_name' => '木皮名称:梭梭树皮',
- 'process_mark' => '加工备注',
- 'table_body_mark' => '表体备注',
- 'out_crt_man' => '外部人员一',
- 'out_checker_man' => '外部人员二',
- 'out_checker_time' => 1685928995,
- ],
- ];
- return $return;
- }
- public function is_same_month($timestamp1,$timestamp2){
- date_default_timezone_set("PRC");
- // 格式化时间戳为年份和月份
- $year1 = date('Y', $timestamp1);
- $month1 = date('m', $timestamp1);
- $year2 = date('Y', $timestamp2);
- $month2 = date('m', $timestamp2);
- if ($year1 === $year2 && $month1 === $month2) {
- return true;
- } else {
- return false;
- }
- }
- //获取数据(点击引入)
- public function getDataFromSqlServer($data){
- if(! empty($this->error)) return [false,$this->error,''];
- if(empty($data['out_order_no_time'][0]) || empty($data['out_order_no_time'][1])) return [false,'制单日期不能为空!',''];
- $bool = $this->is_same_month($data['out_order_no_time'][0],$data['out_order_no_time'][1]);
- if(! $bool) return [false,'制单日期必须同月!',''];
- //查询产品主表副表数据
- date_default_timezone_set("PRC");
- $start = date('Y-m-d H:i:s.000',$data['out_order_no_time'][0]);
- $end = date('Y-m-d H:i:s.000',$data['out_order_no_time'][1]);
- $model = $this->db->table('SO_SOMain as a')
- ->leftJoin('SO_SODetails as b','b.cSOCode','a.cSOCode')
- ->whereBetween('a.dDate',[$start, $end])
- ->whereNotNull('a.cVerifier')
- ->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 order_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','b.iTaxUnitPrice as price');
- if(! empty($data['out_order_no'])) $model->where('a.cSOCode', 'LIKE', '%'.$data['out_order_no'].'%');
- if(! empty($data['customer_no'])) $model->where('a.cCusCode', 'LIKE', '%'.$data['customer_no'].'%');
- if(! empty($data['customer_name'])) $model->where('a.cCusName', 'LIKE', '%'.$data['customer_name'].'%');
- if(! empty($data['table_header_mark'])) $model->where('a.cMemo', 'LIKE', '%'.$data['table_header_mark'].'%');
- if(! empty($data['out_crt_man'])) $model->where('a.cMaker', 'LIKE', '%'.$data['out_crt_man'].'%');
- if(! empty($data['out_checker_man'])) $model->where('a.cVerifier', 'LIKE', '%'.$data['out_checker_man'].'%');
- if(! empty($data['out_checker_time'][0]) && ! empty($data['out_checker_time'][1])) {
- $start1 = date('Y-m-d H:i:s.000',$data['out_checker_time'][0]);
- $end1 = date('Y-m-d H:i:s.000',$data['out_checker_time'][1]);
- $model->whereBetween('a.dverifydate',[$start1, $end1]);
- }
- $result = $model->get()->toArray();
- if(empty($result)) return [false,'暂无数据,更新结束!',''];
- list($status,$msg) = $this->orderRule($result);
- if(empty($msg)) return [false,'暂无数据,更新结束!',''];
- $result = $msg;
- //查询附带的一些信息(比较少)
- $product_no = array_column($result,'product_no');
- $messageOne = $this->db->table('Inventory as a')
- ->join('ComputationUnit as b',function($join){
- $join->on('a.cGroupCode','=','b.cGroupCode')
- ->on('a.cComUnitCode','=','b.cComUnitCode');
- }, null,null,'left')
- ->whereIn('a.cInvCode',$product_no)
- ->select('a.cInvCode as product_no','a.cInvName as product_title','a.cInvStd as product_size','b.cComUnitName as product_unit')
- ->get()->toArray();
- $messageMap = array_column($messageOne,null,'product_no');
- //现存量查询开始 ---组织查询条件
- $args = '';
- foreach ($result as $value){
- $product = $value->product_no;
- $technology_name = $value->technology_name ?? '';
- $wood_name = $value->wood_name ?? '';
- $args .= "(a.cInvCode = '{$product}' and a.cFree1 = '{$technology_name}' and a.cFree2 = '{$wood_name}') OR ";
- }
- $args = rtrim($args,'OR ');
- $messageTwo = $this->db->table('CurrentStock as a')
- ->leftJoin('Warehouse as b','b.cWhCode','a.cWhCode')
- ->whereRaw("($args)")
- ->where('a.iQuantity','>',0)
- ->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')
- ->get()->toArray();
- if(! empty($messageTwo)){
- foreach ($messageTwo as $key => $value){
- $messageTwo[$key] = (array)$value;
- }
- }
- //现存量查询结束
- foreach ($result as $key => $value){
- $result[$key]->technology_material = $value->technology_material ?? '';
- $result[$key]->technology_name = $value->technology_name ?? '';
- $result[$key]->wood_name = $value->wood_name ?? '';
- $result[$key]->process_mark = $value->process_mark ?? '';
- $result[$key]->table_body_mark = $value->table_body_mark ?? '';
- $result[$key]->table_header_mark = $value->table_header_mark ?? '';
- $keys = $value->product_no . $value->technology_name . $value->wood_name;
- $result[$key]->out_order_no_time = $value->out_order_no_time ? strtotime($value->out_order_no_time) : 0;
- $result[$key]->out_checker_time = $value->out_checker_time ? strtotime($value->out_checker_time) : 0;
- $result[$key]->product_title = $messageMap[$value->product_no]->product_title ?? '';
- $result[$key]->product_size = $messageMap[$value->product_no]->product_size ?? '';
- $result[$key]->product_unit = $messageMap[$value->product_no]->product_unit ?? '';
- $result[$key] = (array)$value;
- }
- return [true,$result,$messageTwo];
- }
- public function orderRule($data){
- $result = Orders::where('del_time',0)
- ->whereIn('out_order_no',array_column($data,'out_order_no'))
- ->select('out_order_no')
- ->get()->toArray();
- $out_order_no = array_column($result,'out_order_no');
- if(! empty($out_order_no)) {
- foreach ($data as $key => $value){
- if(in_array($value->out_order_no,$out_order_no)){
- unset($data[$key]);
- }
- }
- }
- return [true,$data];
- }
- //获取数据(刷新现存量)
- public function getDataFromSqlServerForOnHand($data){
- if(! empty($this->error)) return [false,$this->error,''];
- if(empty($data['id'])) return [false,'数据不能为空!',''];
- $product = SaleOrdersProduct::whereIn('id',$data['id'])
- ->select('product_no','technology_name','wood_name')
- ->get()->toArray();
- //现存量查询开始 ---组织查询条件
- $args = '';
- foreach ($product as $value){
- $args .= "(a.cInvCode = '{$value['product_no']}' and a.cFree1 = '{$value['technology_name']}' and a.cFree2 = '{$value['wood_name']}') OR ";
- }
- $args = rtrim($args,'OR ');
- $message = $this->db->table('CurrentStock as a')
- ->leftJoin('Warehouse as b','b.cWhCode','a.cWhCode')
- ->whereRaw("($args)")
- ->where('a.iQuantity','>',0)
- ->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')
- ->get()->toArray();
- if(! empty($message)){
- foreach ($message as $key => $value){
- $message[$key] = (array)$value;
- }
- }
- //现存量查询结束
- return [true,$message,$product];
- }
- //产成品入库单保存接口以及审核
- public function U8Rdrecord10Save($data,$bredvouch = 0){
- if(! empty($this->error)) return [false,$this->error];
- date_default_timezone_set("PRC");
- list($bool,$msg) = $this->createOrderNumberAboutSCRK();
- if(! $bool) return [false,$msg];
- if($bredvouch){
- $cmemo = '来源:福羊羊完工操作撤回';
- }else{
- $cmemo = '来源:福羊羊完工操作 派工单号:'. $data['dispatch_no'];
- }
- //数据
- $bodys[] = [
- "cinvcode" => $data["product_no"],
- "cposition" => "",
- "cbatch" => "",
- "iquantity" => $data["quantity"],
- "inum" => $data["quantity"],
- "iunitcost" => $data["price"] * 0.95,
- "iprice" => $data["price"] * 0.95 * $data['quantity'],
- "iinvexchrate" => "1.00",
- "impoids" => "",
- "cmocode" => "",
- "imoseq" => "",
- "cbmemo" => "",
- "cfree1" => "",
- "cfree2" => "",
- ];
- $post = [
- "password"=>"cloud@123456",
- "entity"=>"U8Rdrecord10Save",
- "login"=>[
- "sAccID"=> "(default)@001",
- "sDate"=> date("Y-m-d"),
- "sServer"=> '127.0.0.1',
- "sUserID"=> "董晓磊",
- "sSerial"=> "",
- "sPassword"=> ""
- ],
- "data"=>[
- "ccode"=>'',
- "ddate"=>date("Y-m-d"),
- "cmaker"=>"董晓磊",
- "dnmaketime"=> date("Y-m-d"),
- "IsExamine"=>true,
- "bredvouch"=> $bredvouch,
- "cwhcode"=>"02",
- "cdepcode"=>"06",
- "crdcode"=>"102", //生产入库
- "cmemo"=> $cmemo,
- "cdefine10" => $data['customer_name'], //客户名称
- "bodys"=>$bodys
- ]
- ];
- $return = $this->post_helper($this->url,json_encode($post), ['Content-Type:application/json']);
- return [$return['flag'], $return['msg']];
- }
- //销售出库单保存接口给以及审核
- public function U8Rdrecord32Save($data,$bredvouch = 0){
- if(! empty($this->error)) return [false,$this->error];
- date_default_timezone_set("PRC");
- $return = $this->getDataFromDispatchList($data);
- if(empty($return)) return [false,'根据销售订单号:'. $data['order_number'] . '未找到发货单数据!'];
- $main = $return[0];
- if($bredvouch){
- $cmemo = '备注一';
- }else{
- $cmemo = '销售单号:'.$main['out_order'];
- }
- //数据
- $bodys = [];
- foreach ($return as $value){
- $bodys[] = [
- "idlsid"=>$value['idlsid'],
- "cdlcode"=>"",
- "dlrowno"=>"",
- "cbdlcode"=>"",
- "cinvcode"=>$value['cinvcode'],
- "cposition"=>$value['cposition'],
- "cbatch"=>$value['cbatch'],
- "iquantity"=>$value['iquantity'],
- "inum"=>$value['inum'],
- "iinvexchrate"=>$value['iinvexchrate'],
- "iunitcost"=>"",
- "iprice"=>"",
- "cbmemo"=>"",
- ];
- }
- $post = [
- "password"=>"cloud@123456",
- "entity"=>"U8Rdrecord32Save",
- "login"=>[
- "sAccID"=> "(default)@001",
- "sDate"=> date("Y-m-d"),
- "sServer"=> '127.0.0.1',
- "sUserID"=> "董晓磊",
- "sSerial"=> "",
- "sPassword"=> ""
- ],
- "data"=>[
- "ccode"=>'',
- "ddate"=>date("Y-m-d"),
- "cmaker"=>"董晓磊",
- "dnmaketime"=> date("Y-m-d"),
- "IsExamine"=>true,
- "bredvouch"=> $bredvouch,
- "cwhcode"=>"02",
- "cdepcode"=>"06",
- "crdcode"=>"102",
- "cmemo"=> $cmemo,
- "cdefine10" => $main['customer_name'], //客户名称
- "bodys"=>$bodys
- ]
- ];
- $return = $this->post_helper($this->url,json_encode($post), ['Content-Type:application/json']);
- return [$return['flag'], $return['msg']];
- }
- public function getDataFromDispatchList($data){
- $message = $this->db->table('DispatchList as a')
- ->leftJoin('DispatchLists as b','b.DLID','a.DLID')
- ->where('a.cSOcode',$data['order_number'])
- ->select('a.cDefine10 as customer_name','a.cSOCode as out_order','b.iDLsID as idlsid','b.cInvCode as cinvcode','b.cPosition as cposition','b.cBatch as cbatch','b.iQuantity as iquantity','b.iNum as inum','b.iInvExchRate as iinvexchrate')
- ->get()->toArray();
- if(! empty($message)){
- foreach ($message as $key => $value){
- $message[$key] = (array)$value;
- }
- }
- return $message;
- }
- //产成品入库单单据号
- public function createOrderNumberAboutSCRK(){
- date_default_timezone_set("PRC");
- $current_month = date('m'); // 获取当前月份
- $date1 = date('y') . $current_month ; // 格式 "2307"
- $date2 = date('Y') . $current_month; // 格式 "202307"
- $record = $this->db->table('VoucherHistory')
- ->where('CardNumber','0411')
- ->whereRaw("(cSeed = '{$date1}' or cSeed = '{$date2}')")
- ->select('cNumber')
- ->first();
- $record = (array)$record;
- if(empty($record)) return [false,'未找到产成品入库当月流水号信息!'];
- $tmp = $record['cNumber'] + 1;
- if(strlen($tmp) > 4) return [false,'产成品入库当月流水号超过四位数!'];
- $number = str_pad($tmp,4,'0',STR_PAD_LEFT);
- $number = $tmp . $number;
- $ccode = "SCRK" . $date2 . $number;
- return [true,$ccode];
- }
- //销售出库单单据号
- public function createOrderNumberAboutXC(){
- date_default_timezone_set("PRC");
- $current_month = date('m'); // 获取当前月份
- $date1 = date('y') . $current_month ; // 格式 "2307"
- $date2 = date('Y') . $current_month; // 格式 "202307"
- $record = $this->db->table('VoucherHistory')
- ->where('CardNumber','0303')
- ->whereRaw("(cSeed = '{$date1}' or cSeed = '{$date2}')")
- ->select('cNumber')
- ->first();
- $record = (array)$record;
- if(empty($record)) return [false,'未找到销售出库单当月流水号信息!'];
- $tmp = $record['cNumber'] + 1;
- if(strlen($tmp) > 4) return [false,'销售出库单当月流水号超过四位数!'];
- $number = str_pad($tmp,4,'0',STR_PAD_LEFT);
- $number = $tmp . $number;
- $ccode = "XC" . $date2 . $number;
- return [true,$ccode];
- }
- public function post_helper($url, $data,$header = [],$timeout = 60){
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_ENCODING, '');
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
- curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
- if(!is_null($data)) curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
- $r = curl_exec($ch);
- curl_close($ch);
- return json_decode($r, true);
- }
- }
|