Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hg-smart
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
platform
hg-smart
Commits
294bfa0c
Commit
294bfa0c
authored
Aug 28, 2024
by
宋祥
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.采购收货BUG修复
parent
2ed3b447
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
25 deletions
+22
-25
HGCG003B.js
src/main/webapp/HG/CG/HGCG003B.js
+21
-24
HGCG003B.jsp
src/main/webapp/HG/CG/HGCG003B.jsp
+1
-1
No files found.
src/main/webapp/HG/CG/HGCG003B.js
View file @
294bfa0c
$
(
function
()
{
var
inventRecordBoxBlockId
=
__eiInfo
.
getBlock
(
"invent_record_box_block_id"
).
getMappedRows
();
IPLATUI
.
EFGrid
=
{
"result"
:
{
exportGrid
:
false
,
// 隐藏右侧自定义导出按钮
...
...
@@ -7,16 +8,15 @@ $(function () {
pageSize
:
20
,
pageSizes
:
[
20
,
50
,
70
,
100
],
},
columns
:
[
{
columns
:
[{
field
:
"inventCode"
,
template
:
function
(
item
)
{
let
template
=
item
.
inventCode
;
if
(
item
.
inventCode
)
{
for
(
let
i
=
0
;
i
<
inventRecordBoxBlockId
.
length
;
i
++
)
{
if
(
item
.
inventCode
===
inventRecordBoxBlockId
[
i
][
'valueField'
])
{
if
(
item
.
inventCode
)
{
for
(
let
i
=
0
;
i
<
inventRecordBoxBlockId
.
length
;
i
++
)
{
if
(
item
.
inventCode
===
inventRecordBoxBlockId
[
i
][
'valueField'
])
{
template
=
inventRecordBoxBlockId
[
i
][
'valueField'
];
}
else
{
}
else
{
template
=
item
.
inventCode
;
}
}
...
...
@@ -49,22 +49,20 @@ $(function () {
filter
:
"contains"
});
}
},
{
},
{
field
:
"primaryId"
,
template
:
function
(
item
)
{
item
[
'primaryId'
]
=
$
(
"#inqu_status-0-primaryId"
).
val
();
item
[
'primaryId'
]
=
$
(
"#inqu_status-0-primaryId"
).
val
();
return
$
(
"#inqu_status-0-primaryId"
).
val
();
}
}
],
}],
beforeEdit
:
function
(
e
)
{
var
status
=
$
(
"#status"
).
val
();
if
(
status
!=
'0'
)
{
if
(
status
!=
'0'
)
{
e
.
preventDefault
();
}
var
source
=
$
(
"#source"
).
val
();
if
(
source
===
'0'
)
{
if
(
source
===
'0'
)
{
//选择合同的明细不能修改存货信息
for
(
let
i
=
0
;
i
<
e
.
sender
.
columns
.
length
;
i
++
)
{
//指定的列不让修改
...
...
@@ -77,7 +75,6 @@ $(function () {
}
}
}
},
loadComplete
:
function
(
grid
)
{
// 此grid对象
...
...
@@ -170,23 +167,23 @@ $(window).load(function () {
* @param coefficient
*/
let
calAmount
=
function
(
item
)
{
let
price
=
item
.
price
;
//计算方式为重量乘单价
if
(
item
.
calculationMethod
==
1
){
if
(
item
.
receiveWeight
&&
item
.
price
){
if
(
item
.
calculationMethod
==
1
)
{
let
receiveWeight
=
item
.
receiveWeight
;
if
(
!
isBlank
(
receiveWeight
)
&&
!
isBlank
(
price
))
{
// 重量*单价金额
let
totalAmount
=
item
.
receiveWeight
*
item
.
price
;
let
totalAmount
=
parseFloat
(
receiveWeight
)
*
parseFloat
(
price
)
;
resultGrid
.
setCellValue
(
item
,
'amount'
,
totalAmount
)
}
}
else
{
if
(
item
.
receiveQty
&&
item
.
price
){
if
(
item
.
receiveQty
&&
item
.
price
)
{
// 重
量*单价金额
let
totalAmount
=
item
.
receiveQty
*
item
.
price
;
}
else
{
let
receiveQty
=
item
.
receiveQty
;
if
(
!
isBlank
(
receiveQty
)
&&
!
isBlank
(
price
))
{
// 数
量*单价金额
let
totalAmount
=
parseFloat
(
receiveQty
)
*
parseFloat
(
price
)
;
resultGrid
.
setCellValue
(
item
,
'amount'
,
totalAmount
)
}
}
}
}
/**
...
...
src/main/webapp/HG/CG/HGCG003B.jsp
View file @
294bfa0c
...
...
@@ -51,7 +51,7 @@
sumType=
"page"
/>
<EF:EFColumn
ename=
"receiveUnitWeight"
cname=
"收货单重"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
hidden=
"true"
/>
<EF:EFComboColumn
ename=
"calculationMethod"
cname=
"计算方式"
enable=
"true"
width=
"1
0
0"
align=
"center"
required=
"true"
>
<EF:EFComboColumn
ename=
"calculationMethod"
cname=
"计算方式"
enable=
"true"
width=
"1
2
0"
align=
"center"
required=
"true"
>
<EF:EFCodeOption
codeName=
"hggp.cg.calculationMethod"
/>
</EF:EFComboColumn>
<EF:EFColumn
ename=
"price"
cname=
"单价"
width=
"120"
align=
"right"
format=
"{0:C3}"
required=
"true"
/>
...
...
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