Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
warehouse
Overview
Overview
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
胡懿
warehouse
Commits
c7d6af4f
Commit
c7d6af4f
authored
Feb 24, 2023
by
yyq1988
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
对接出库功能
parent
b42ddc07
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
16 deletions
+20
-16
materialRequisitionForm.jsp
...warehouse/materialrequisition/materialRequisitionForm.jsp
+1
-1
outboundDetail.jsp
...app/webpage/modules/warehouse/outbound/outboundDetail.jsp
+0
-0
outboundForm.jsp
...ebapp/webpage/modules/warehouse/outbound/outboundForm.jsp
+0
-0
outboundList.js
...webapp/webpage/modules/warehouse/outbound/outboundList.js
+19
-15
No files found.
src/main/webapp/webpage/modules/warehouse/materialrequisition/materialRequisitionForm.jsp
View file @
c7d6af4f
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
action=
"${ctx}/warehouse/materialrequisition/materialRequisition/save"
method=
"post"
action=
"${ctx}/warehouse/materialrequisition/materialRequisition/save"
method=
"post"
class=
"form-horizontal"
>
class=
"form-horizontal"
>
<form:hidden
path=
"id"
/>
<form:hidden
path=
"id"
/>
<h3
class=
"
物资领用表"
>
</h3>
<h3
class=
"
text-center"
>
物资领用表
</h3>
<table
class=
"table table-bordered main-table"
>
<table
class=
"table table-bordered main-table"
>
<tr>
<tr>
<td>
<font
color=
"red"
>
*
</font>
领用单号
</td>
<td>
<font
color=
"red"
>
*
</font>
领用单号
</td>
...
...
src/main/webapp/webpage/modules/warehouse/outbound/outboundDetail.jsp
0 → 100644
View file @
c7d6af4f
This diff is collapsed.
Click to expand it.
src/main/webapp/webpage/modules/warehouse/outbound/outboundForm.jsp
View file @
c7d6af4f
This diff is collapsed.
Click to expand it.
src/main/webapp/webpage/modules/warehouse/outbound/outboundList.js
View file @
c7d6af4f
...
@@ -110,13 +110,6 @@ $(document).ready(function() {
...
@@ -110,13 +110,6 @@ $(document).ready(function() {
}
}
,{
,{
field
:
'relationId'
,
title
:
'相关表单ID'
,
sortable
:
true
,
sortName
:
'relationId'
}
,{
field
:
'outboundTime'
,
field
:
'outboundTime'
,
title
:
'出库时间'
,
title
:
'出库时间'
,
sortable
:
true
,
sortable
:
true
,
...
@@ -258,21 +251,21 @@ $(document).ready(function() {
...
@@ -258,21 +251,21 @@ $(document).ready(function() {
$
(
'#outboundTable'
).
bootstrapTable
(
'refresh'
);
$
(
'#outboundTable'
).
bootstrapTable
(
'refresh'
);
}
}
function
add
(){
function
add
(){
jp
.
go
(
"${ctx}/warehouse/outbound/outbound/form/add"
);
jp
.
openSaveDialog
(
"新增出库单"
,
"${ctx}/warehouse/outbound/outbound/form/add"
,
'1200'
,
'800'
);
}
}
function
edit
(
id
){
function
edit
(
id
){
if
(
id
==
undefined
){
if
(
id
==
undefined
){
id
=
getIdSelections
();
id
=
getIdSelections
();
}
}
jp
.
go
(
"${ctx}/warehouse/outbound/outbound/form/edit?id="
+
id
);
jp
.
openSaveDialog
(
"编辑出库单"
,
"${ctx}/warehouse/outbound/outbound/form/edit?id="
+
id
,
'1200'
,
'800'
);
}
}
function
view
(
id
){
//没有权限时,不显示确定按钮
function
view
(
id
){
//没有权限时,不显示确定按钮
if
(
id
==
undefined
){
if
(
id
==
undefined
){
id
=
getIdSelections
();
id
=
getIdSelections
();
}
}
jp
.
go
(
"${ctx}/warehouse/outbound/outbound/form/view?id="
+
id
);
jp
.
openViewDialog
(
"查看出库单"
,
"${ctx}/warehouse/outbound/outbound/form/view?id="
+
id
,
'1200'
,
'800'
);
}
}
...
@@ -316,9 +309,11 @@ $(document).ready(function() {
...
@@ -316,9 +309,11 @@ $(document).ready(function() {
<
table
class
=
"ani table"
>
<
table
class
=
"ani table"
>
<
thead
>
<
thead
>
<
tr
>
<
tr
>
<
th
>
出库单主表
id
<
/th
>
<
th
>
物资编码
<
/th
>
<
th
>
台账明细表
id
<
/th
>
<
th
>
物资名称
<
/th
>
<
th
>
备注信息
<
/th
>
<
th
>
类型
<
/th
>
<
th
>
型号
<
/th
>
<
th
>
单价
<
/th
>
<
/tr
>
<
/tr
>
<
/thead
>
<
/thead
>
<
tbody
id
=
"outboundChild-{{idx}}-1-List"
>
<
tbody
id
=
"outboundChild-{{idx}}-1-List"
>
...
@@ -330,10 +325,19 @@ $(document).ready(function() {
...
@@ -330,10 +325,19 @@ $(document).ready(function() {
<
script
type
=
"text/template"
id
=
"outboundChild1Tpl"
>
//<!--
<
script
type
=
"text/template"
id
=
"outboundChild1Tpl"
>
//<!--
<
tr
>
<
tr
>
<
td
>
<
td
>
{{
row
.
outbound
.
id
}}
{{
row
.
ledgerInfo
.
name
}}
<
/td
>
<
td
>
{{
row
.
ledgerInfo
.
code
}}
<
/td
>
<
td
>
{{
row
.
ledgerInfo
.
type
.
name
}}
<
/td
>
<
td
>
{{
row
.
ledgerInfo
.
model
}}
<
/td
>
<
/td
>
<
td
>
<
td
>
{{
row
.
ledgerInfo
.
id
}}
{{
row
.
ledgerInfo
.
amount
}}
<
/td
>
<
/td
>
<
td
>
<
td
>
{{
row
.
remarks
}}
{{
row
.
remarks
}}
...
...
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