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
58921991
Commit
58921991
authored
Mar 03, 2019
by
季圣华
Browse files
增加单据打印的功能
parent
8ec87f06
Changes
23
Hide whitespace changes
Inline
Side-by-side
erp_web/js/pages/financial/financial_base.js
View file @
58921991
...
...
@@ -874,6 +874,14 @@
});
}
});
//打印单据
$
(
"
#printAccountHeadShow
"
).
off
(
"
click
"
).
on
(
"
click
"
,
function
(){
var
tableString
=
$
(
"
#accountHeadDlgShow
"
).
html
();
localStorage
.
setItem
(
"
tableString
"
,
tableString
);
window
.
open
(
"
../../js/print/print_form.html
"
,
"
location:No;status:No;help:No;dialogWidth:800px;dialogHeight:600px;scroll:auto;
"
);
});
//初始化键盘enter事件
$
(
document
).
keydown
(
function
(
event
)
{
...
...
erp_web/js/pages/materials/in_out.js
View file @
58921991
...
...
@@ -2132,6 +2132,13 @@
}
});
//打印单据
$
(
"
#printDepotHeadShow
"
).
off
(
"
click
"
).
on
(
"
click
"
,
function
(){
var
tableString
=
$
(
"
#depotHeadDlgShow
"
).
html
();
localStorage
.
setItem
(
"
tableString
"
,
tableString
);
window
.
open
(
"
../../js/print/print_form.html
"
,
"
location:No;status:No;help:No;dialogWidth:800px;dialogHeight:600px;scroll:auto;
"
);
});
//初始化键盘enter事件
$
(
document
).
keydown
(
function
(
event
){
//兼容 IE和firefox 事件
...
...
erp_web/js/print/print.html
View file @
58921991
...
...
@@ -3,12 +3,12 @@
<head>
<title>
数据打印
</title>
<style
type=
"text/css"
>
body
{
background
:
white
;
margin
:
0px
;
padding
:
0px
;
font-size
:
13px
;
text-align
:
left
;}
.div-title
{
font-size
:
16pt
;}
.div-time
{
font-size
:
11pt
;}
.pb
{
font-size
:
13px
;
border-collapse
:
collapse
;}
.pb
th
{
font-weight
:
bold
;
text-align
:
center
;
border
:
1px
solid
#333333
;
padding
:
2px
;}
.pb
td
{
border
:
1px
solid
#333333
;
padding
:
2px
;}
body
{
background
:
white
;
margin
:
0px
;
padding
:
0px
;
font-size
:
13px
;
text-align
:
left
;}
.div-title
{
font-size
:
16pt
;}
.div-time
{
font-size
:
11pt
;}
.pb
{
font-size
:
13px
;
border-collapse
:
collapse
;}
.pb
th
{
font-weight
:
bold
;
text-align
:
center
;
border
:
1px
solid
#333333
;
padding
:
2px
;}
.pb
td
{
border
:
1px
solid
#333333
;
padding
:
2px
;}
</style>
</head>
<body>
...
...
erp_web/js/print/print_form.html
0 → 100644
View file @
58921991
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<title>
数据打印
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui-1.3.5/themes/default/easyui.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/js/easyui-1.3.5/themes/icon.css"
/>
<script
src=
"/js/jquery-1.8.0.min.js"
></script>
<script
src=
"/js/easyui-1.3.5/jquery.easyui.min.js"
></script>
<script
src=
"/js/easyui-1.3.5/locale/easyui-lang-zh_CN.js"
></script>
<style
type=
"text/css"
>
body
{
background
:
white
;
margin
:
0px
;
padding
:
0px
;
font-size
:
13px
;
text-align
:
left
;}
.pb
th
{
font-weight
:
bold
;
text-align
:
center
;
border
:
1px
solid
#333333
;
padding
:
2px
;}
.pb
td
{
border
:
1px
solid
#333333
;
padding
:
2px
;}
#dlg-buttons-show
{
visibility
:
hidden
;
}
</style>
</head>
<body>
<script
type=
"text/javascript"
>
var
tableString
=
localStorage
.
getItem
(
"
tableString
"
);
document
.
write
(
tableString
);
window
.
print
();
</script>
</body>
</html>
\ No newline at end of file
erp_web/pages/financial/advance_in.html
View file @
58921991
...
...
@@ -105,7 +105,7 @@
onclick=
"javascript:$('#accountHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"accountHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
付款会员:
</td>
...
...
@@ -146,5 +146,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#accountHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
erp_web/pages/financial/giro.html
View file @
58921991
...
...
@@ -109,7 +109,7 @@
onclick=
"javascript:$('#accountHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"accountHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
经手人:
</td>
...
...
@@ -152,5 +152,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#accountHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
erp_web/pages/financial/item_in.html
View file @
58921991
...
...
@@ -110,7 +110,7 @@
onclick=
"javascript:$('#accountHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"accountHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
往来单位:
</td>
...
...
@@ -155,5 +155,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#accountHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
erp_web/pages/financial/item_out.html
View file @
58921991
...
...
@@ -110,7 +110,7 @@
onclick=
"javascript:$('#accountHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"accountHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
往来单位:
</td>
...
...
@@ -153,5 +153,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#accountHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
erp_web/pages/financial/money_in.html
View file @
58921991
...
...
@@ -106,7 +106,7 @@
onclick=
"javascript:$('#accountHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"accountHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
付款单位:
</td>
...
...
@@ -147,5 +147,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#accountHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
erp_web/pages/financial/money_out.html
View file @
58921991
...
...
@@ -105,7 +105,7 @@
onclick=
"javascript:$('#accountHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"accountHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
收款单位:
</td>
...
...
@@ -146,5 +146,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelAccountHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#accountHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
erp_web/pages/materials/allocation_out_list.html
View file @
58921991
...
...
@@ -100,7 +100,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:70px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
单据日期:
</td>
...
...
@@ -131,5 +131,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/pages/materials/assemble_list.html
View file @
58921991
...
...
@@ -99,7 +99,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:70px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
单据日期:
</td>
...
...
@@ -130,5 +130,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/pages/materials/disassemble_list.html
View file @
58921991
...
...
@@ -105,7 +105,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:70px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
单据日期:
</td>
...
...
@@ -136,5 +136,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/pages/materials/other_in_list.html
View file @
58921991
...
...
@@ -108,7 +108,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:70px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
供应商:
</td>
...
...
@@ -141,5 +141,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
erp_web/pages/materials/other_out_list.html
View file @
58921991
...
...
@@ -102,7 +102,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:70px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
客户:
</td>
...
...
@@ -135,5 +135,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/pages/materials/purchase_back_list.html
View file @
58921991
...
...
@@ -150,7 +150,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
供应商:
</td>
...
...
@@ -221,6 +221,11 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadAccountDlg"
class=
"easyui-dialog"
style=
"width:380px;padding:10px 20px;top:80px"
closed=
"true"
modal=
"true"
buttons=
"#accountDlgButtons"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table
class=
"account-dlg"
>
...
...
erp_web/pages/materials/purchase_in_list.html
View file @
58921991
...
...
@@ -152,7 +152,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:20px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
供应商:
</td>
...
...
@@ -224,6 +224,11 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadAccountDlg"
class=
"easyui-dialog"
style=
"width:380px;padding:10px 20px;top:80px"
closed=
"true"
modal=
"true"
buttons=
"#accountDlgButtons"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table
class=
"account-dlg"
>
...
...
erp_web/pages/materials/purchase_orders_list.html
View file @
58921991
...
...
@@ -109,7 +109,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:60px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;"
>
供应商:
</td>
...
...
@@ -142,6 +142,11 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadAccountDlg"
class=
"easyui-dialog"
style=
"width:380px;padding:10px 20px;top:80px"
closed=
"true"
modal=
"true"
buttons=
"#accountDlgButtons"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table
class=
"account-dlg"
>
...
...
erp_web/pages/materials/retail_back_list.html
View file @
58921991
...
...
@@ -141,7 +141,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:50px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;height:50px;"
>
会员卡号:
</td>
...
...
@@ -207,5 +207,10 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
</body>
</html>
\ No newline at end of file
erp_web/pages/materials/retail_out_list.html
View file @
58921991
...
...
@@ -145,7 +145,7 @@
onclick=
"javascript:$('#depotHeadDlg').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadDlgShow"
class=
"easyui-dialog"
style=
"width:1200px;padding:10px 20px;top:50px"
closed=
"true"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
closed=
"true"
buttons=
"#dlg-buttons-show"
modal=
"true"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table>
<tr>
<td
style=
"width:60px;height:50px;"
>
会员卡号:
</td>
...
...
@@ -212,6 +212,11 @@
</tr>
</table>
</div>
<div
id=
"dlg-buttons-show"
>
<a
href=
"javascript:void(0)"
id=
"printDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-ok"
>
打印
</a>
<a
href=
"javascript:void(0)"
id=
"cancelDepotHeadShow"
class=
"easyui-linkbutton"
iconCls=
"icon-cancel"
onclick=
"javascript:$('#depotHeadDlgShow').dialog('close')"
>
取消
</a>
</div>
<div
id=
"depotHeadAccountDlg"
class=
"easyui-dialog"
style=
"width:380px;padding:10px 20px;top:80px"
closed=
"true"
modal=
"true"
buttons=
"#accountDlgButtons"
cache=
"false"
collapsible=
"false"
closable=
"true"
>
<table
class=
"account-dlg"
>
...
...
Prev
1
2
Next
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