Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
Jz-Php
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
PHP
Jz-Php
Commits
0ca804b0
提交
0ca804b0
authored
5月 13, 2020
作者:
chengye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
测试延长在线时长为1个小时
上级
b383583e
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
17 行增加
和
32 行删除
+17
-32
SingleSign.php
application/admin/controller/SingleSign.php
+2
-0
Payment.php
application/em/controller/Payment.php
+15
-2
cookie.php.bak
config/cookie.php.bak
+0
-30
没有找到文件。
application/admin/controller/SingleSign.php
浏览文件 @
0ca804b0
...
...
@@ -19,6 +19,8 @@ class SingleSign {
if
(
$res
)
$this
->
instence
=
$redis
;
else
throw
new
Exception
(
"redis connect faild"
);
}
$sid
=
Cookie
::
get
(
'PHPSESSID'
);
if
(
!
empty
(
$sid
))
Cookie
::
set
(
'PHPSESSID'
,
$sid
,[
'expire'
=>
time
()
+
3600
]);
}
//获取session
...
...
application/em/controller/Payment.php
浏览文件 @
0ca804b0
...
...
@@ -16,6 +16,7 @@ use app\em\model\EmPaymentInvoice;
use
app\em\model\EmPaymentInvoiceBalance
;
use
app\em\model\EmPaymentReceipt
;
use
app\em\model\Staff
;
use
app\em\model\Station
;
use
app\em\validate\AddPaymentValidate
;
use
think\Exception
;
use
think\facade\Request
;
...
...
@@ -438,8 +439,8 @@ class Payment extends Base
}
else
{
$details
[
$k
][
'amount'
]
=
$inv
->
payment_amount
-
$inv
->
payment_balance
;
}
$details
[
$k
][
'projectNumber'
]
=
$this
->
get
CbzxCode
(
$inv
->
account_id
);
$details
[
$k
][
'contractNumber'
]
=
$this
->
get
EmContract
(
$inv
->
account_id
);
$details
[
$k
][
'projectNumber'
]
=
$this
->
get
DetailsFields
(
$inv
->
account_id
);
$details
[
$k
][
'contractNumber'
]
=
$this
->
get
DetailsFields
(
$inv
->
account_id
,
true
);
$details
[
$k
][
'receipt'
]
=
''
;
}
...
...
@@ -527,5 +528,16 @@ class Payment extends Base
return
$res
?
true
:
false
;
}
public
function
getDetailsFields
(
$account_id
,
$contract
=
false
){
$account
=
EmAccount
::
get
([
'account_id'
=>
$account_id
]);
$em
=
\app\em\model\Em
::
get
(
$account
->
em_id
);
if
(
$contract
===
true
){
if
(
!
$em
)
return
json
([
'status'
=>
0
,
'message'
=>
'没有找到所属电表'
]);
return
$em
->
contract_numb
?:
''
;
}
$station
=
Station
::
get
([
'station_id'
=>
$em
->
station_id
]);
if
(
!
$station
)
return
json
([
'status'
=>
0
,
'message'
=>
'没有找到所属基站'
]);
return
$station
->
proj_number
?:
''
;
}
}
\ No newline at end of file
config/cookie.php.bak
deleted
100755 → 0
浏览文件 @
b383583e
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | Cookie设置
// +----------------------------------------------------------------------
return
[
// cookie 名称前缀
'prefix'
=>
''
,
// cookie 保存时间
'expire'
=>
0
,
// cookie 保存路径
'path'
=>
'/'
,
// cookie 有效域名
'domain'
=>
'gonn.com.cn'
,
// cookie 启用安全传输
'secure'
=>
false
,
// httponly设置
'httponly'
=>
''
,
// 是否使用 setcookie
'setcookie'
=>
true
,
];
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论