Commit 69b35c0a by 孙龙

up

parent d6b0638f
......@@ -95,10 +95,6 @@ Class AjaxController extends Controller
$tmpl->save();
//此处推送到erp
$this->pushTemplateErp();
// dump($this->erp);
// $a = $this->erp->createIssueLabel(1,"测试模板0001","田超",1);
// dump($a);
return $this->ajaxReturn(0,"修改成功");
}else{
......@@ -144,18 +140,19 @@ Class AjaxController extends Controller
try{
//登录
$soap = new \SoapClient(env("ERP_DOMAIN").'/ormrpc/services/EASLogin?wsdl');
$res = $soap->login('PT', '123456', 'eas', env('ERP_DB_NAME'), 'L2', 1, 'BaseDB');
$res = $soap->login( 'TC', 'unicom', 'eas', env('ERP_DB_NAME'), 'L2', 1, 'BaseDB');
//接口
$this->erp = new \SoapClient(ENV("ERP_DOMAIN").'/ormrpc/services/WSIchuntjKFacade?wsdl');
// dump($this->erp);
$this->erp->createIssueLabel(json_encode([
$tmp = $this->erp->createIssueLabel(json_encode([
"templateId"=>1,
"templateNmae"=>"aaaa",
"createUser"=>"bbbb",
"status"=>1,
]));
dump($tmp);
return true;
}catch(\Exception $e){
dump($e);
return false;
// dump($e->getMessage());
}
......
......@@ -180,7 +180,7 @@
}
// 查看菜单权限
$permId = 'cron_'.$permId . '_check';
$permId = $permId . '_check';
if (!in_array($permId, $perms)) {
unset($menus[$k]);
......
......@@ -93,7 +93,7 @@ class WebController extends Controller
public function showPage($request,$info){
$info['title'] = '预览';
$id = $request->input("tmpl_relation_id",0);
$html = (new \App\Services\LabelService)->getLabelHtml(5);
$html = (new \App\Services\LabelService)->getLabelHtml($id);
$info["html"] = $html;
return view('web', $info);
}
......
......@@ -10,6 +10,8 @@ use App\Http\Controllers\Controller;
use App\Model\TemplateListModel;
use App\Model\NodesModel;
use App\Model\TmplRelationsModel;
use DNS1D;
use DNS2D;
class LabelService {
public function getLabelHtml($id){
......
......@@ -12,7 +12,7 @@ return [
'domain' => 'liexin.net',
'risk_url' => 'http://risk.liexin.net',
'risk_url' => 'http://label.liexin.net',
// API项目
'api_domain' => 'http://api.liexin.com/',
// 获取用户权限接口
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment