Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
434499ec
"vscode:/vscode.git/clone" did not exist on "a10fabb7efaf05df476b057b822e2ed41c1f10f7"
Commit
434499ec
authored
Mar 18, 2018
by
季圣华
Browse files
增加报表中单据点击后展示的功能(续增)
parent
3201b804
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/css/common.css
View file @
434499ec
...
...
@@ -37,4 +37,16 @@
color
:
blue
;
text-decoration
:
underline
;
cursor
:
pointer
;
}
#tablePanel
.n-link
{
color
:
blue
;
text-decoration
:
underline
;
cursor
:
pointer
;
}
#materialDetailListDlg
.n-link
{
color
:
blue
;
text-decoration
:
underline
;
cursor
:
pointer
;
}
\ No newline at end of file
src/main/webapp/js/pages/materials/bill_detail.js
View file @
434499ec
...
...
@@ -90,7 +90,7 @@
billType
=
"
material
"
;
$
(
"
#bill .purchase_in
"
).
show
();
}
else
if
(
listSubType
==
"
采购退货
"
)
{
else
if
(
listSubType
==
"
采购退货
出库
"
)
{
billType
=
"
material
"
;
$
(
"
#bill .purchase_back
"
).
show
();
}
...
...
@@ -98,7 +98,7 @@
billType
=
"
material
"
;
$
(
"
#bill .sale_out
"
).
show
();
}
else
if
(
listSubType
==
"
销售退货
"
)
{
else
if
(
listSubType
==
"
销售退货
入库
"
)
{
billType
=
"
material
"
;
$
(
"
#bill .sale_back
"
).
show
();
}
...
...
src/main/webapp/pages/materials/material.jsp
View file @
434499ec
...
...
@@ -19,6 +19,7 @@
<link
type=
"text/css"
rel=
"stylesheet"
href=
"
<%=
path
%>
/css/material.css"
/>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/easyui-1.3.5/jquery.easyui.min.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/easyui-1.3.5/locale/easyui-lang-zh_CN.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/common/outlook_in.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/common/common.js"
></script>
</head>
<body>
...
...
@@ -738,7 +739,12 @@
pageSize
:
initPageSize
,
pageList
:
initPageNum
,
columns
:[[
{
title
:
'
单据编号
'
,
field
:
'
Number
'
,
width
:
150
},
{
title
:
'
单据编号
'
,
field
:
'
Number
'
,
width
:
150
,
formatter
:
function
(
value
,
row
)
{
return
"
<a class='n-link' onclick=
\"
newTab('
"
+
row
.
Number
+
"
','../materials/bill_detail.jsp?n=
"
+
row
.
Number
+
"
&type=
"
+
row
.
Type
+
"
','')
\"
>
"
+
row
.
Number
+
"
</a>
"
;
}
},
{
title
:
'
类型
'
,
field
:
'
Type
'
,
width
:
100
},
{
title
:
'
数量
'
,
field
:
'
BasicNumber
'
,
width
:
80
},
{
title
:
'
日期
'
,
field
:
'
OperTime
'
,
width
:
180
}
...
...
src/main/webapp/pages/reports/customer_account.jsp
View file @
434499ec
...
...
@@ -19,6 +19,7 @@
<link
type=
"text/css"
rel=
"stylesheet"
href=
"
<%=
path
%>
/css/common.css"
/>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/easyui-1.3.5/jquery.easyui.min.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/easyui-1.3.5/locale/easyui-lang-zh_CN.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/common/outlook_in.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/My97DatePicker/WdatePicker.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/common/common.js"
></script>
<script>
...
...
@@ -111,7 +112,12 @@
pageSize
:
10
,
pageList
:
[
10
,
50
,
100
],
columns
:[[
{
title
:
'
单据编号
'
,
field
:
'
number
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
field
:
'
number
'
,
width
:
140
,
formatter
:
function
(
value
,
row
)
{
return
"
<a class='n-link' onclick=
\"
newTab('
"
+
row
.
number
+
"
','../materials/bill_detail.jsp?n=
"
+
row
.
number
+
"
&type=
"
+
row
.
type
+
"
','')
\"
>
"
+
row
.
number
+
"
</a>
"
;
}
},
{
title
:
'
类型
'
,
field
:
'
type
'
,
width
:
100
},
{
title
:
'
单位名称
'
,
field
:
'
supplierName
'
,
width
:
200
},
{
title
:
'
单据金额
'
,
field
:
'
discountLastMoney
'
,
width
:
80
},
...
...
src/main/webapp/pages/reports/vendor_account.jsp
View file @
434499ec
...
...
@@ -19,6 +19,7 @@
<link
type=
"text/css"
rel=
"stylesheet"
href=
"
<%=
path
%>
/css/common.css"
/>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/easyui-1.3.5/jquery.easyui.min.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/easyui-1.3.5/locale/easyui-lang-zh_CN.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/common/outlook_in.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/My97DatePicker/WdatePicker.js"
></script>
<script
type=
"text/javascript"
src=
"
<%=
path
%>
/js/common/common.js"
></script>
<script>
...
...
@@ -111,7 +112,12 @@
pageSize
:
10
,
pageList
:
[
10
,
50
,
100
],
columns
:[[
{
title
:
'
单据编号
'
,
field
:
'
number
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
field
:
'
number
'
,
width
:
140
,
formatter
:
function
(
value
,
row
)
{
return
"
<a class='n-link' onclick=
\"
newTab('
"
+
row
.
number
+
"
','../materials/bill_detail.jsp?n=
"
+
row
.
number
+
"
&type=
"
+
row
.
type
+
"
','')
\"
>
"
+
row
.
number
+
"
</a>
"
;
}
},
{
title
:
'
类型
'
,
field
:
'
type
'
,
width
:
100
},
{
title
:
'
单位名称
'
,
field
:
'
supplierName
'
,
width
:
200
},
{
title
:
'
单据金额
'
,
field
:
'
discountLastMoney
'
,
width
:
80
},
...
...
Write
Preview
Supports
Markdown
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