Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
H
Hgs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
徐州
Hgs
Commits
314ae316
Commit
314ae316
authored
Nov 26, 2021
by
huagnxiner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
回访跟踪报表修改部门过滤代码
parent
55dab5de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
29 deletions
+37
-29
StatisticController.java
...java/com/house365/web/controller/StatisticController.java
+19
-15
callBackTraceStatistic.jsp
.../WEB-INF/views/statistic/pages/callBackTraceStatistic.jsp
+18
-14
No files found.
house365-hgs-web/src/main/java/com/house365/web/controller/StatisticController.java
View file @
314ae316
...
@@ -40,6 +40,8 @@ import java.text.ParseException;
...
@@ -40,6 +40,8 @@ import java.text.ParseException;
import
java.text.SimpleDateFormat
;
import
java.text.SimpleDateFormat
;
import
java.util.*
;
import
java.util.*
;
import
static
com
.
house365
.
web
.
util
.
SessionConstants
.
SESSION_CURRNET_DEPT_KEY
;
/**
/**
* 状态来源分析 statusSourceStatistic
* 状态来源分析 statusSourceStatistic
* 项目来源分析 projectSource
* 项目来源分析 projectSource
...
@@ -127,7 +129,7 @@ public class StatisticController extends BaseController {
...
@@ -127,7 +129,7 @@ public class StatisticController extends BaseController {
)
{
)
{
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
DepartmentEntity
city
=
null
;
DepartmentEntity
city
=
null
;
String
cityId
=
dept
.
getCityID
();
String
cityId
=
dept
.
getCityID
();
...
@@ -375,7 +377,7 @@ public class StatisticController extends BaseController {
...
@@ -375,7 +377,7 @@ public class StatisticController extends BaseController {
)
{
)
{
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
List
<
DepartmentEntity
>
departmentEntities
=
new
ArrayList
<>();
List
<
DepartmentEntity
>
departmentEntities
=
new
ArrayList
<>();
List
<
UserEntity
>
userEntities
=
new
ArrayList
<>();
List
<
UserEntity
>
userEntities
=
new
ArrayList
<>();
...
@@ -653,7 +655,7 @@ public class StatisticController extends BaseController {
...
@@ -653,7 +655,7 @@ public class StatisticController extends BaseController {
)
{
)
{
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
List
<
DepartmentEntity
>
departmentEntities
=
new
ArrayList
<>();
List
<
DepartmentEntity
>
departmentEntities
=
new
ArrayList
<>();
List
<
UserEntity
>
userEntities
=
new
ArrayList
<>();
List
<
UserEntity
>
userEntities
=
new
ArrayList
<>();
...
@@ -1338,7 +1340,7 @@ public class StatisticController extends BaseController {
...
@@ -1338,7 +1340,7 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"localReportStatistic"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"localReportStatistic"
,
method
=
RequestMethod
.
GET
)
public
String
localReportStatistic
(
Model
model
,
HttpServletRequest
request
)
{
public
String
localReportStatistic
(
Model
model
,
HttpServletRequest
request
)
{
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
...
@@ -1569,7 +1571,7 @@ public class StatisticController extends BaseController {
...
@@ -1569,7 +1571,7 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"reportMarketingStatistic"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"reportMarketingStatistic"
,
method
=
RequestMethod
.
GET
)
public
String
reportMarketingStatistic
(
Model
model
,
HttpServletRequest
request
)
{
public
String
reportMarketingStatistic
(
Model
model
,
HttpServletRequest
request
)
{
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
...
@@ -1850,7 +1852,7 @@ public class StatisticController extends BaseController {
...
@@ -1850,7 +1852,7 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"projectSource"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"projectSource"
,
method
=
RequestMethod
.
GET
)
public
String
projectSource
(
Model
model
,
HttpServletRequest
request
)
{
public
String
projectSource
(
Model
model
,
HttpServletRequest
request
)
{
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
ProjectListRequest
projectReq
=
new
ProjectListRequest
();
ProjectListRequest
projectReq
=
new
ProjectListRequest
();
projectReq
.
setPaging
(
new
Page
(
Integer
.
MAX_VALUE
));
projectReq
.
setPaging
(
new
Page
(
Integer
.
MAX_VALUE
));
...
@@ -2216,7 +2218,7 @@ public class StatisticController extends BaseController {
...
@@ -2216,7 +2218,7 @@ public class StatisticController extends BaseController {
List
<
ProjectSrouceRePo
>
projectSourceTableData
=
getProjectSourceTableData
(
projectSrouceParaPo
);
List
<
ProjectSrouceRePo
>
projectSourceTableData
=
getProjectSourceTableData
(
projectSrouceParaPo
);
List
<
Object
>
li
=
null
;
List
<
Object
>
li
=
null
;
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
for
(
ProjectSrouceRePo
projectSrouceRePo
:
projectSourceTableData
)
{
for
(
ProjectSrouceRePo
projectSrouceRePo
:
projectSourceTableData
)
{
li
=
new
LinkedList
<>();
li
=
new
LinkedList
<>();
li
.
add
(
dept
.
getName
());
li
.
add
(
dept
.
getName
());
...
@@ -2245,7 +2247,7 @@ public class StatisticController extends BaseController {
...
@@ -2245,7 +2247,7 @@ public class StatisticController extends BaseController {
String
projectName
=
request
.
getParameter
(
"projectName"
);
String
projectName
=
request
.
getParameter
(
"projectName"
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
SESSION_CURRNET_DEPT_KEY
);
ProjectListRequest
projectReq
=
new
ProjectListRequest
();
ProjectListRequest
projectReq
=
new
ProjectListRequest
();
projectReq
.
setPaging
(
new
Page
(
Integer
.
MAX_VALUE
));
projectReq
.
setPaging
(
new
Page
(
Integer
.
MAX_VALUE
));
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>();
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>();
...
@@ -2511,7 +2513,7 @@ public class StatisticController extends BaseController {
...
@@ -2511,7 +2513,7 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"callDailyStatistic"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"callDailyStatistic"
,
method
=
RequestMethod
.
GET
)
public
String
callDailyStatistic
(
Model
model
,
HttpServletRequest
request
)
{
public
String
callDailyStatistic
(
Model
model
,
HttpServletRequest
request
)
{
try
{
try
{
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
SESSION_CURRNET_DEPT_KEY
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
model
.
addAttribute
(
"startTime"
,
startTime
);
model
.
addAttribute
(
"startTime"
,
startTime
);
...
@@ -2603,7 +2605,7 @@ public class StatisticController extends BaseController {
...
@@ -2603,7 +2605,7 @@ public class StatisticController extends BaseController {
public
void
callDailyStatisticExcel
(
HttpServletRequest
request
,
HttpServletResponse
response
)
{
public
void
callDailyStatisticExcel
(
HttpServletRequest
request
,
HttpServletResponse
response
)
{
try
{
try
{
final
String
[]
excelTitles
=
{
"部门"
,
"姓名"
,
"外呼总量"
,
"成功接通量"
,
"累计时长(分钟)"
};
final
String
[]
excelTitles
=
{
"部门"
,
"姓名"
,
"外呼总量"
,
"成功接通量"
,
"累计时长(分钟)"
};
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
SESSION_CURRNET_DEPT_KEY
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
startTime
=
startTime
+
" 00:00:00"
;
startTime
=
startTime
+
" 00:00:00"
;
...
@@ -2997,7 +2999,7 @@ public class StatisticController extends BaseController {
...
@@ -2997,7 +2999,7 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"/salesConversionReport"
)
@RequestMapping
(
value
=
"/salesConversionReport"
)
public
String
salesConversionReport
(
Model
model
,
HttpServletRequest
request
)
{
public
String
salesConversionReport
(
Model
model
,
HttpServletRequest
request
)
{
try
{
try
{
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
SESSION_CURRNET_DEPT_KEY
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
model
.
addAttribute
(
"startTime"
,
startTime
);
model
.
addAttribute
(
"startTime"
,
startTime
);
...
@@ -3068,7 +3070,7 @@ public class StatisticController extends BaseController {
...
@@ -3068,7 +3070,7 @@ public class StatisticController extends BaseController {
public
void
salesConversionReportExcel
(
HttpServletRequest
request
,
HttpServletResponse
response
)
{
public
void
salesConversionReportExcel
(
HttpServletRequest
request
,
HttpServletResponse
response
)
{
try
{
try
{
final
String
[]
excelTitles
=
{
"部门"
,
"安家顾问"
,
"私客总量"
,
"已跟进量"
,
"AB类"
,
"约看"
,
"到访"
,
"到访转化率"
,
"认筹"
,
"认筹转化率"
,
"认购"
,
"认购转化率"
,
"签约"
,
"签约转化率"
,
"退房"
};
final
String
[]
excelTitles
=
{
"部门"
,
"安家顾问"
,
"私客总量"
,
"已跟进量"
,
"AB类"
,
"约看"
,
"到访"
,
"到访转化率"
,
"认筹"
,
"认筹转化率"
,
"认购"
,
"认购转化率"
,
"签约"
,
"签约转化率"
,
"退房"
};
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
SESSION_CURRNET_DEPT_KEY
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
String
endTime
=
request
.
getParameter
(
"endTime"
);
startTime
=
startTime
+
" 00:00:00"
;
startTime
=
startTime
+
" 00:00:00"
;
...
@@ -3531,7 +3533,7 @@ public class StatisticController extends BaseController {
...
@@ -3531,7 +3533,7 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"/transactionStatusReport"
)
@RequestMapping
(
value
=
"/transactionStatusReport"
)
public
String
transactionStatusReport
(
Integer
number
,
Model
model
,
HttpServletRequest
request
)
{
public
String
transactionStatusReport
(
Integer
number
,
Model
model
,
HttpServletRequest
request
)
{
try
{
try
{
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
SESSION_CURRNET_DEPT_KEY
);
Map
<
String
,
Object
>
searchParams
=
Servlets
.
getParametersStartingWith
(
request
,
"search_"
);
Map
<
String
,
Object
>
searchParams
=
Servlets
.
getParametersStartingWith
(
request
,
"search_"
);
String
city
=
dept
.
getDescripition
();
String
city
=
dept
.
getDescripition
();
String
startTime
=
request
.
getParameter
(
"startTime"
);
String
startTime
=
request
.
getParameter
(
"startTime"
);
...
@@ -3568,7 +3570,7 @@ public class StatisticController extends BaseController {
...
@@ -3568,7 +3570,7 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"/cloudCusReport"
)
@RequestMapping
(
value
=
"/cloudCusReport"
)
public
String
cloudCusReport
(
Model
model
,
HttpServletRequest
request
)
{
public
String
cloudCusReport
(
Model
model
,
HttpServletRequest
request
)
{
try
{
try
{
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
S
essionConstants
.
S
ESSION_CURRNET_DEPT_KEY
);
DepartmentEntity
dept
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
SESSION_CURRNET_DEPT_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
Map
<
String
,
Object
>
searchParams
=
Servlets
.
getParametersStartingWith
(
request
,
"search_"
);
Map
<
String
,
Object
>
searchParams
=
Servlets
.
getParametersStartingWith
(
request
,
"search_"
);
String
city
=
dept
.
getDescripition
();
String
city
=
dept
.
getDescripition
();
...
@@ -3593,13 +3595,15 @@ public class StatisticController extends BaseController {
...
@@ -3593,13 +3595,15 @@ public class StatisticController extends BaseController {
@RequestMapping
(
value
=
"/callBackTraceStatistic"
)
@RequestMapping
(
value
=
"/callBackTraceStatistic"
)
public
String
callBackTraceStatistic
(
Integer
number
,
Integer
pageSize
,
Model
model
,
HttpServletRequest
request
)
{
public
String
callBackTraceStatistic
(
Integer
number
,
Integer
pageSize
,
Model
model
,
HttpServletRequest
request
)
{
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
UserEntity
userEntity
=
(
UserEntity
)
request
.
getSession
().
getAttribute
(
SessionConstants
.
THREAD_USER_KEY
);
DepartmentEntity
curDepartment
=
(
DepartmentEntity
)
request
.
getSession
().
getAttribute
(
SESSION_CURRNET_DEPT_KEY
);
boolean
isDirector
=
user
.
isDirector
(
userEntity
.
getId
());
boolean
isDirector
=
user
.
isDirector
(
userEntity
.
getId
());
List
<
DepartmentEntity
>
departmentEntities
=
user
.
getChildDepartList
(
userEntity
.
getDeptId
());
List
<
DepartmentEntity
>
departmentEntities
=
user
.
getChildDepartList
(
userEntity
.
getDeptId
());
//默认返回合肥的数据,只有合肥(deptid=243)需要这个报表
//默认返回合肥的数据,只有合肥(deptid=243)需要这个报表
List
<
DepartmentEntity
>
hfDepartmentEntityList
=
new
ArrayList
<>();
List
<
DepartmentEntity
>
hfDepartmentEntityList
=
new
ArrayList
<>();
for
(
DepartmentEntity
dep
:
departmentEntities
)
{
for
(
DepartmentEntity
dep
:
departmentEntities
)
{
if
(
isValidDept
(
dep
.
getUrlPath
(),
"243"
)){
if
((
"zb"
.
equals
(
curDepartment
.
getDescripition
())
||
"hf"
.
equals
(
curDepartment
.
getDescripition
()))&&
isValidDept
(
dep
.
getUrlPath
(),
"243"
)){
hfDepartmentEntityList
.
add
(
dep
);
hfDepartmentEntityList
.
add
(
dep
);
}
}
}
}
...
...
house365-hgs-web/src/main/webapp/WEB-INF/views/statistic/pages/callBackTraceStatistic.jsp
View file @
314ae316
...
@@ -29,21 +29,25 @@
...
@@ -29,21 +29,25 @@
<c:otherwise>
<c:otherwise>
<form
id=
"filterForm"
name=
"filterForm"
class=
"form-inline filterForm"
<form
id=
"filterForm"
name=
"filterForm"
class=
"form-inline filterForm"
action=
"${ctx}/statistic/callBackTraceStatistic"
method=
"get"
>
action=
"${ctx}/statistic/callBackTraceStatistic"
method=
"get"
>
<c:forEach
items=
"${departments}"
var=
"dept"
>
<div
class=
"row-fluid"
>
<li
<
c:if
test=
"${dept.id == deptId}"
>
class="active"
</c:if>
>
<ul
class=
"nav nav-tabs"
style=
"margin-bottom: 0;position: relative;"
>
<c:choose>
<c:forEach
items=
"${departments}"
var=
"dept"
>
<c:when
test=
"${dept.id == deptId}"
>
<li
<
c:if
test=
"${dept.id == deptId}"
>
class="active"
</c:if>
>
<a
href=
"#"
>
${dept.name}
</a>
<c:choose>
</c:when>
<c:when
test=
"${dept.id == deptId}"
>
<c:when
test=
"${dept.id != deptId}"
>
<a
href=
"#"
>
${dept.name}
</a>
<a
href=
"${ctx}/statistic/callBackTraceStatistic?deptId=${dept.id}&pageSize=${param['pageSize']}"
>
${dept.name}
</a>
</c:when>
</c:when>
<c:when
test=
"${dept.id != deptId}"
>
<c:otherwise>
<a
href=
"${ctx}/statistic/callBackTraceStatistic?deptId=${dept.id}&pageSize=${param['pageSize']}"
>
${dept.name}
</a>
</c:when>
<c:otherwise>
</c:otherwise>
</c:otherwise>
</c:choose>
</c:choose>
</li>
</li>
</c:forEach>
</c:forEach>
</ul>
</div>
<div
style=
"margin-top:10px;"
>
<div
style=
"margin-top:10px;"
>
数据日期:
数据日期:
<input
type=
"text"
name=
"startTime"
id=
"startTime"
value=
"${startTime}"
<input
type=
"text"
name=
"startTime"
id=
"startTime"
value=
"${startTime}"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment