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
f8b387b8
Commit
f8b387b8
authored
Feb 02, 2019
by
cjl
Browse files
去掉clientIp这个无效还会导致js出错的变量
parent
3d221d39
Changes
10
Hide whitespace changes
Inline
Side-by-side
erp_web/js/pages/financial/financial_base.js
View file @
f8b387b8
...
@@ -611,7 +611,6 @@
...
@@ -611,7 +611,6 @@
//增加
//增加
function
addAccountHead
(){
function
addAccountHead
(){
$
(
"
#clientIp
"
).
val
(
clientIp
);
$
(
'
#accountHeadFM
'
).
form
(
'
clear
'
);
$
(
'
#accountHeadFM
'
).
form
(
'
clear
'
);
var
thisDateTime
=
getNowFormatDateTime
();
//当前时间
var
thisDateTime
=
getNowFormatDateTime
();
//当前时间
$
(
"
#BillTime
"
).
val
(
thisDateTime
);
$
(
"
#BillTime
"
).
val
(
thisDateTime
);
...
@@ -643,7 +642,6 @@
...
@@ -643,7 +642,6 @@
//编辑信息
//编辑信息
function
editAccountHead
(
accountHeadTotalInfo
){
function
editAccountHead
(
accountHeadTotalInfo
){
var
accountHeadInfo
=
accountHeadTotalInfo
.
split
(
"
AaBb
"
);
var
accountHeadInfo
=
accountHeadTotalInfo
.
split
(
"
AaBb
"
);
$
(
"
#clientIp
"
).
val
(
clientIp
);
$
(
"
#BillNo
"
).
val
(
accountHeadInfo
[
1
]);
$
(
"
#BillNo
"
).
val
(
accountHeadInfo
[
1
]);
$
(
"
#BillTime
"
).
val
(
accountHeadInfo
[
2
]);
$
(
"
#BillTime
"
).
val
(
accountHeadInfo
[
2
]);
$
(
"
#Remark
"
).
val
(
accountHeadInfo
[
3
]);
$
(
"
#Remark
"
).
val
(
accountHeadInfo
[
3
]);
...
...
erp_web/js/pages/materials/in_out.js
View file @
f8b387b8
...
@@ -1523,7 +1523,6 @@
...
@@ -1523,7 +1523,6 @@
//新增信息
//新增信息
function
addDepotHead
(){
function
addDepotHead
(){
$
(
"
#clientIp
"
).
val
(
clientIp
);
$
(
'
#depotHeadFM
'
).
form
(
'
clear
'
);
$
(
'
#depotHeadFM
'
).
form
(
'
clear
'
);
var
thisDateTime
=
getNowFormatDateTime
();
//当前时间
var
thisDateTime
=
getNowFormatDateTime
();
//当前时间
$
(
"
#OperTime
"
).
val
(
thisDateTime
);
$
(
"
#OperTime
"
).
val
(
thisDateTime
);
...
@@ -1625,7 +1624,6 @@
...
@@ -1625,7 +1624,6 @@
return
;
return
;
}
}
var
depotHeadInfo
=
depotHeadTotalInfo
.
split
(
"
AaBb
"
);
var
depotHeadInfo
=
depotHeadTotalInfo
.
split
(
"
AaBb
"
);
$
(
"
#clientIp
"
).
val
(
clientIp
);
if
(
listSubType
===
"
礼品销售
"
){
if
(
listSubType
===
"
礼品销售
"
){
$
(
"
#GiftId
"
).
combobox
(
'
setValue
'
,
depotHeadInfo
[
1
]);
$
(
"
#GiftId
"
).
combobox
(
'
setValue
'
,
depotHeadInfo
[
1
]);
}
}
...
...
erp_web/pages/financial/advance_in.html
View file @
f8b387b8
...
@@ -97,7 +97,6 @@
...
@@ -97,7 +97,6 @@
</td>
</td>
</tr>
</tr>
</table>
</table>
<input
type=
"hidden"
name=
"clientIp"
id=
"clientIp"
value=
"<%=clientIp %>"
/>
</form>
</form>
</div>
</div>
<div
id=
"dlg-buttons"
>
<div
id=
"dlg-buttons"
>
...
...
erp_web/pages/manage/functions.html
View file @
f8b387b8
...
@@ -105,7 +105,6 @@
...
@@ -105,7 +105,6 @@
</td>
</td>
</tr>
</tr>
</table>
</table>
<input
type=
"hidden"
name=
"clientIp"
id=
"clientIp"
value=
"<%=clientIp %>"
/>
</form>
</form>
</div>
</div>
<div
id=
"dlg-buttons"
>
<div
id=
"dlg-buttons"
>
...
...
erp_web/pages/materials/assemble_list.html
View file @
f8b387b8
...
@@ -16,11 +16,6 @@
...
@@ -16,11 +16,6 @@
<script
src=
"/js/My97DatePicker/WdatePicker.js"
></script>
<script
src=
"/js/My97DatePicker/WdatePicker.js"
></script>
<script
src=
"/js/common/common.js"
></script>
<script
src=
"/js/common/common.js"
></script>
<script
src=
"/js/pages/materials/in_out.js"
></script>
<script
src=
"/js/pages/materials/in_out.js"
></script>
<script>
var
kid
=
$
{
sessionScope
.
user
.
id
};
var
path
=
"
<%=path%>
"
;
var
clientIp
=
"
<%=clientIp%>
"
;
</script>
</head>
</head>
<body>
<body>
<!-- 查询 -->
<!-- 查询 -->
...
...
erp_web/pages/materials/gift_out_list.html
View file @
f8b387b8
...
@@ -91,7 +91,6 @@
...
@@ -91,7 +91,6 @@
</td>
</td>
</tr>
</tr>
</table>
</table>
<input
type=
"hidden"
name=
"clientIp"
id=
"clientIp"
value=
"<%=clientIp %>"
/>
</form>
</form>
</div>
</div>
<div
id=
"dlg-buttons"
>
<div
id=
"dlg-buttons"
>
...
...
erp_web/pages/materials/other_in_list.html
View file @
f8b387b8
...
@@ -100,7 +100,6 @@
...
@@ -100,7 +100,6 @@
</td>
</td>
</tr>
</tr>
</table>
</table>
<input
type=
"hidden"
name=
"clientIp"
id=
"clientIp"
value=
"<%=clientIp %>"
/>
</form>
</form>
</div>
</div>
<div
id=
"dlg-buttons"
>
<div
id=
"dlg-buttons"
>
...
...
erp_web/pages/materials/other_out_list.html
View file @
f8b387b8
...
@@ -94,7 +94,6 @@
...
@@ -94,7 +94,6 @@
</td>
</td>
</tr>
</tr>
</table>
</table>
<input
type=
"hidden"
name=
"clientIp"
id=
"clientIp"
value=
"<%=clientIp %>"
/>
</form>
</form>
</div>
</div>
<div
id=
"dlg-buttons"
>
<div
id=
"dlg-buttons"
>
...
...
erp_web/pages/materials/sale_back_list.html
View file @
f8b387b8
...
@@ -136,7 +136,6 @@
...
@@ -136,7 +136,6 @@
<td
style=
"width:100px;"
></td>
<td
style=
"width:100px;"
></td>
</tr>
</tr>
</table>
</table>
<input
type=
"hidden"
name=
"clientIp"
id=
"clientIp"
value=
"<%=clientIp %>"
/>
</form>
</form>
</div>
</div>
<div
id=
"dlg-buttons"
>
<div
id=
"dlg-buttons"
>
...
...
erp_web/pages/materials/sale_out_list.html
View file @
f8b387b8
...
@@ -138,7 +138,6 @@
...
@@ -138,7 +138,6 @@
<td
style=
"width:100px;"
></td>
<td
style=
"width:100px;"
></td>
</tr>
</tr>
</table>
</table>
<input
type=
"hidden"
name=
"clientIp"
id=
"clientIp"
value=
"<%=clientIp %>"
/>
</form>
</form>
</div>
</div>
<div
id=
"dlg-buttons"
>
<div
id=
"dlg-buttons"
>
...
...
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