Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hp-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
hp-smart
Commits
463c9b35
Commit
463c9b35
authored
Apr 02, 2024
by
wancheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0402优化
parent
a7c59476
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
29 additions
and
29 deletions
+29
-29
ServiceHPKC002A.java
...java/com/baosight/hpjx/hp/kc/service/ServiceHPKC002A.java
+1
-1
ServiceHPKC002B.java
...java/com/baosight/hpjx/hp/kc/service/ServiceHPKC002B.java
+1
-1
ServiceHPKC003A.java
...java/com/baosight/hpjx/hp/kc/service/ServiceHPKC003A.java
+1
-1
ServiceHPKC004A.java
...java/com/baosight/hpjx/hp/kc/service/ServiceHPKC004A.java
+1
-1
ServiceHPKC004B.java
...java/com/baosight/hpjx/hp/kc/service/ServiceHPKC004B.java
+1
-1
ServiceHPKC005.java
.../java/com/baosight/hpjx/hp/kc/service/ServiceHPKC005.java
+2
-2
ServiceHPKC005A.java
...java/com/baosight/hpjx/hp/kc/service/ServiceHPKC005A.java
+1
-1
ServiceHPKC006.java
.../java/com/baosight/hpjx/hp/kc/service/ServiceHPKC006.java
+1
-1
ServiceHPKC007A.java
...java/com/baosight/hpjx/hp/kc/service/ServiceHPKC007A.java
+1
-1
HPKC002A.jsp
src/main/webapp/HP/KC/HPKC002A.jsp
+1
-1
HPKC002B.jsp
src/main/webapp/HP/KC/HPKC002B.jsp
+1
-1
HPKC004A.jsp
src/main/webapp/HP/KC/HPKC004A.jsp
+1
-1
HPKC004B.jsp
src/main/webapp/HP/KC/HPKC004B.jsp
+1
-1
HPKC005.jsp
src/main/webapp/HP/KC/HPKC005.jsp
+3
-3
HPKC007A.jsp
src/main/webapp/HP/KC/HPKC007A.jsp
+1
-1
HPKC009.jsp
src/main/webapp/HP/KC/HPKC009.jsp
+9
-9
HPKC012.jsp
src/main/webapp/HP/KC/HPKC012.jsp
+1
-1
HPSC006C.jsp
src/main/webapp/HP/SC/HPSC006C.jsp
+1
-1
No files found.
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC002A.java
View file @
463c9b35
...
...
@@ -159,7 +159,7 @@ public class ServiceHPKC002A extends ServiceEPBase {
newKc002
.
setReqNo
(
SequenceGenerator
.
getNextSequence
(
HPConstant
.
SequenceId
.
HPKC002_NUMBER
));
newKc002
.
setReceiptDate
(
DateUtils
.
shortDate
());
newKc002
.
setAmount
(
applyAmount
);
newKc002
.
setWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
applyAmount
));
newKc002
.
setWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
applyAmount
)
.
divide
(
new
BigDecimal
(
1000
))
);
newKc002
.
setRemark
(
applyRemark
);
newKc002
.
setKcId
(
kcId
);
newKc002
.
setDeleteFlag
(
CommonConstant
.
YesNo
.
NO_0
);
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC002B.java
View file @
463c9b35
...
...
@@ -150,7 +150,7 @@ public class ServiceHPKC002B extends ServiceEPBase {
newKc002
.
setReqNo
(
SequenceGenerator
.
getNextSequence
(
HPConstant
.
SequenceId
.
HPKC002_NUMBER
));
newKc002
.
setReceiptDate
(
DateUtils
.
shortDate
());
newKc002
.
setAmount
(
applyAmount
);
newKc002
.
setWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
applyAmount
));
newKc002
.
setWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
applyAmount
)
.
divide
(
new
BigDecimal
(
"1000"
))
);
newKc002
.
setRemark
(
applyRemark
);
newKc002
.
setKcId
(
kcId
);
newKc002
.
setDeleteFlag
(
CommonConstant
.
YesNo
.
NO_0
);
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC003A.java
View file @
463c9b35
...
...
@@ -142,7 +142,7 @@ public class ServiceHPKC003A extends ServiceEPBase {
newKc003
.
setRemark
(
MapUtils
.
getString
(
row
,
"remark1"
));
newKc003
.
setWhName
(
HPPZTools
.
HpPz007
.
getByCode
(
whCode
).
getWhName
());
newKc003
.
setAmount
(
applyNum
);
newKc003
.
setWeight
(
applyNum
.
multiply
(
dbSc005b
.
getUnitWt
()));
newKc003
.
setWeight
(
applyNum
.
multiply
(
dbSc005b
.
getUnitWt
())
.
divide
(
new
BigDecimal
(
"1000"
))
);
newKc003
.
setDeleteFlag
(
CommonConstant
.
YesNo
.
NO_0
);
DaoUtils
.
insert
(
HPKC003
.
INSERT
,
newKc003
);
// 同步生产计划
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC004A.java
View file @
463c9b35
...
...
@@ -107,7 +107,7 @@ public class ServiceHPKC004A extends ServiceEPBase {
newKc004
.
setSaleNo
(
SequenceGenerator
.
getNextSequence
(
HPConstant
.
SequenceId
.
HPKC004_SALE_NO
));
newKc004
.
setReceiptDate
(
DateUtils
.
shortDate
());
newKc004
.
setAmount
(
applyAmount
);
newKc004
.
setWeight
(
applyAmount
.
multiply
(
dbKc011
.
getUnitWeight
()));
newKc004
.
setWeight
(
applyAmount
.
multiply
(
dbKc011
.
getUnitWeight
())
.
divide
(
new
BigDecimal
(
"1000"
))
);
newKc004
.
setRemark
(
applyRemark
);
newKc004
.
setKcId
(
kcId
);
newKc004
.
setIsPrint
(
CommonConstant
.
YesNo
.
NO_0
);
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC004B.java
View file @
463c9b35
...
...
@@ -150,7 +150,7 @@ public class ServiceHPKC004B extends ServiceEPBase {
newKc004
.
setAmount
(
applyAmount
);
//转换t
newKc004
.
setWeight
(
multiply
.
divide
(
new
BigDecimal
(
1000
)));
newKc004
.
setUnitWeight
(
newKc004
.
getUnitWeight
()
.
divide
(
new
BigDecimal
(
1000
))
);
newKc004
.
setUnitWeight
(
newKc004
.
getUnitWeight
());
newKc004
.
setRemark
(
applyRemark
);
newKc004
.
setKcId
(
kcId
);
newKc004
.
setIsPrint
(
CommonConstant
.
YesNo
.
NO_0
);
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC005.java
View file @
463c9b35
...
...
@@ -180,8 +180,8 @@ public class ServiceHPKC005 extends ServiceBase {
fKc005
.
setBookUnitWeight
(
unitWeight
);
fKc005
.
setEntityUnitWeight
(
unitWeight
);
// 计算总重
fKc005
.
setBookWeight
(
fKc005
.
getBookAmount
().
multiply
(
unitWeight
));
fKc005
.
setEntityWeight
(
fKc005
.
getEntityAmount
().
multiply
(
unitWeight
));
fKc005
.
setBookWeight
(
fKc005
.
getBookAmount
().
multiply
(
unitWeight
)
.
divide
(
new
BigDecimal
(
"1000"
))
);
fKc005
.
setEntityWeight
(
fKc005
.
getEntityAmount
().
multiply
(
unitWeight
)
.
divide
(
new
BigDecimal
(
"1000"
))
);
// 差异数量
fKc005
.
setDiffAmount
(
fKc005
.
getEntityAmount
().
subtract
(
fKc005
.
getBookAmount
()));
// 差异重量
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC005A.java
View file @
463c9b35
...
...
@@ -139,7 +139,7 @@ public class ServiceHPKC005A extends ServiceEPBase {
newKc005
.
setCheckNo
(
SequenceGenerator
.
getNextSequence
(
HPConstant
.
SequenceId
.
CHECK_NO
));
newKc005
.
setReceiptDate
(
DateUtils
.
shortDate
());
newKc005
.
setEntityAmount
(
entityAmount
);
newKc005
.
setEntityWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
entityAmount
));
newKc005
.
setEntityWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
entityAmount
)
.
divide
(
new
BigDecimal
(
"1000"
))
);
newKc005
.
setBookAmount
(
dbKc010
.
getAmount
());
newKc005
.
setBookWeight
(
dbKc010
.
getWeight
());
newKc005
.
setDiffAmount
(
entityAmount
.
subtract
(
dbKc010
.
getAmount
()));
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC006.java
View file @
463c9b35
...
...
@@ -147,7 +147,7 @@ public class ServiceHPKC006 extends ServiceBase {
// 根据规格计算单重
fKc006
.
setUnitWeight
(
HPPZTools
.
HpPz006
.
calcUnitWeight
(
dbPz006
));
// 计算总重
fKc006
.
setWeight
(
fKc006
.
getAmount
().
multiply
(
fKc006
.
getUnitWeight
()));
fKc006
.
setWeight
(
fKc006
.
getAmount
().
multiply
(
fKc006
.
getUnitWeight
())
.
divide
(
new
BigDecimal
(
"1000"
))
);
fKc006
.
setInventRecordId
(
dbPz006
.
getId
());
fKc006
.
setInventCode
(
dbPz006
.
getInventCode
());
fKc006
.
setDeleteFlag
(
CommonConstant
.
YesNo
.
NO_0
);
...
...
src/main/java/com/baosight/hpjx/hp/kc/service/ServiceHPKC007A.java
View file @
463c9b35
...
...
@@ -143,7 +143,7 @@ public class ServiceHPKC007A extends ServiceEPBase {
kc007
.
setOtherOuterNo
(
SequenceGenerator
.
getNextSequence
(
HPConstant
.
SequenceId
.
OTHER_OUTER_NO
));
kc007
.
setReceiptDate
(
DateUtils
.
shortDate
());
kc007
.
setAmount
(
applyAmount
);
kc007
.
setWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
applyAmount
));
kc007
.
setWeight
(
dbKc010
.
getUnitWeight
().
multiply
(
applyAmount
)
.
divide
(
new
BigDecimal
(
"1000"
))
);
kc007
.
setKcId
(
kcId
);
kc007
.
setRemark
(
applyRemark
);
kc007
.
setDeleteFlag
(
CommonConstant
.
YesNo
.
NO_0
);
...
...
src/main/webapp/HP/KC/HPKC002A.jsp
View file @
463c9b35
...
...
@@ -65,7 +65,7 @@
<EF:EFColumn
ename=
"amount"
cname=
"库存数量"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"unitWeight"
cname=
"单量(KG)"
enable=
"false"
width=
"170"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
KG
)"
enable=
"false"
width=
"170"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
T
)"
enable=
"false"
width=
"170"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
</EF:EFGrid>
</EF:EFRegion>
...
...
src/main/webapp/HP/KC/HPKC002B.jsp
View file @
463c9b35
...
...
@@ -51,7 +51,7 @@
<EF:EFColumn
ename=
"amount"
cname=
"库存数量"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"unitWeight"
cname=
"单量(KG)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
KG
)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
T
)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"remark"
cname=
"备注"
enable=
"false"
width=
"150"
type=
"hidden"
/>
</EF:EFGrid>
...
...
src/main/webapp/HP/KC/HPKC004A.jsp
View file @
463c9b35
...
...
@@ -34,7 +34,7 @@
<EF:EFColumn
ename=
"applyAmount"
cname=
"申请数量"
width=
"120"
align=
"right"
format=
"{0:N0}"
required=
"true"
/>
<EF:EFColumn
ename=
"applyRemark"
cname=
"申请说明"
width=
"150"
editType=
"textarea"
copy=
"true"
/>
<EF:EFColumn
ename=
"amount"
cname=
"库存数量"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N0}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量
(T)
"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"remark"
cname=
"备注"
enable=
"false"
width=
"150"
hidden=
"true"
/>
<EF:EFColumn
ename=
"whCode"
cname=
"仓库编码"
enable=
"false"
width=
"140"
align=
"center"
hidden=
"true"
/>
<EF:EFColumn
ename=
"projCode"
cname=
"项目号"
enable=
"false"
width=
"140"
align=
"center"
hidden=
"true"
/>
...
...
src/main/webapp/HP/KC/HPKC004B.jsp
View file @
463c9b35
...
...
@@ -58,7 +58,7 @@
<EF:EFColumn
ename=
"amount"
cname=
"库存数量"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"unitWeight"
cname=
"单量(KG)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
KG
)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
T
)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"remark"
cname=
"备注"
enable=
"false"
width=
"150"
hidden=
"true"
/>
</EF:EFGrid>
...
...
src/main/webapp/HP/KC/HPKC005.jsp
View file @
463c9b35
...
...
@@ -56,15 +56,15 @@
<EF:EFColumn
ename=
"inventRecordId"
cname=
"规格"
width=
"120"
align=
"center"
required=
"true"
readonly=
"true"
/>
<EF:EFColumn
ename=
"bookAmount"
cname=
"账面数量"
format=
"{0:N0}"
maxLength=
"20"
width=
"90"
align=
"right"
sumType=
"all"
required=
"true"
readonly=
"true"
/>
<EF:EFColumn
ename=
"bookWeight"
cname=
"账面重量(
KG
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"90"
<EF:EFColumn
ename=
"bookWeight"
cname=
"账面重量(
T
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"90"
align=
"right"
sumType=
"all"
/>
<EF:EFColumn
ename=
"entityAmount"
cname=
"实物数量"
format=
"{0:N0}"
maxLength=
"20"
width=
"100"
align=
"right"
sumType=
"all"
required=
"true"
readonly=
"true"
/>
<EF:EFColumn
ename=
"entityWeight"
cname=
"实物重量(
KG
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"120"
<EF:EFColumn
ename=
"entityWeight"
cname=
"实物重量(
T
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"120"
align=
"right"
sumType=
"all"
/>
<EF:EFColumn
ename=
"diffAmount"
cname=
"差异数量"
enable=
"false"
format=
"{0:N0}"
maxLength=
"20"
width=
"100"
align=
"right"
sumType=
"all"
readonly=
"true"
/>
<EF:EFColumn
ename=
"diffWeight"
cname=
"差异重量(
KG
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"120"
<EF:EFColumn
ename=
"diffWeight"
cname=
"差异重量(
T
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"120"
align=
"right"
sumType=
"all"
readonly=
"true"
/>
<EF:EFColumn
ename=
"remark"
cname=
"备注"
width=
"150"
readonly=
"true"
/>
<EF:EFColumn
ename=
"oldCheckNo"
cname=
"原盘点单号"
enable=
"false"
width=
"140"
align=
"center"
/>
...
...
src/main/webapp/HP/KC/HPKC007A.jsp
View file @
463c9b35
...
...
@@ -59,7 +59,7 @@
<EF:EFColumn
ename=
"applyRemark"
cname=
"申请说明"
width=
"150"
editType=
"textarea"
copy=
"true"
/>
<EF:EFColumn
ename=
"amount"
cname=
"库存数量"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N0}"
/>
<EF:EFColumn
ename=
"unitWeight"
cname=
"单重(KG)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
KG
)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
T
)"
enable=
"false"
width=
"120"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"remark"
cname=
"备注"
enable=
"false"
width=
"150"
/>
</EF:EFGrid>
</EF:EFRegion>
...
...
src/main/webapp/HP/KC/HPKC009.jsp
View file @
463c9b35
...
...
@@ -52,39 +52,39 @@
</EF:EFComboColumn>
<EF:EFColumn
ename=
"initAmount"
cname=
"期初数量"
enable=
"false"
width=
"100"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"initWeight"
cname=
"期初重量(
KG
)"
enable=
"false"
width=
"100"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"initWeight"
cname=
"期初重量(
T
)"
enable=
"false"
width=
"100"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"cgEnterAmount"
cname=
"采购入库数量"
enable=
"false"
width=
"100"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"cgEnterWeight"
cname=
"采购入库重量(
KG
)"
enable=
"false"
width=
"100"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"cgEnterWeight"
cname=
"采购入库重量(
T
)"
enable=
"false"
width=
"100"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"qtEnterAmount"
cname=
"其它入库数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"qtEnterWeight"
cname=
"其它入库重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"qtEnterWeight"
cname=
"其它入库重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"enterAmount"
cname=
"入库数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"enterWeight"
cname=
"入库重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"enterWeight"
cname=
"入库重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"scOuterAmount"
cname=
"生产领料数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"scOuterWeight"
cname=
"生产领料重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"scOuterWeight"
cname=
"生产领料重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"qtOuterAmount"
cname=
"其它出库数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"qtOuterWeight"
cname=
"其它出库重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"qtOuterWeight"
cname=
"其它出库重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"outerAmount"
cname=
"出库数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"outerWeight"
cname=
"出库重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"outerWeight"
cname=
"出库重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"pdDiffAmount"
cname=
"盘点差异数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"pdDiffWeight"
cname=
"盘点差异重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"pdDiffWeight"
cname=
"盘点差异重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"endAmount"
cname=
"期末数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
sumType=
"all"
/>
<EF:EFColumn
ename=
"endWeight"
cname=
"期末重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
<EF:EFColumn
ename=
"endWeight"
cname=
"期末重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
sumType=
"all"
/>
</EF:EFGrid>
</EF:EFRegion>
...
...
src/main/webapp/HP/KC/HPKC012.jsp
View file @
463c9b35
...
...
@@ -57,7 +57,7 @@
<EF:EFColumn
ename=
"unit"
cname=
"单位"
enable=
"false"
width=
"120"
align=
"center"
/>
<EF:EFColumn
ename=
"warnNum"
cname=
"预警值"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
/>
<EF:EFColumn
ename=
"amount"
cname=
"库存数量"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N0}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
KG
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFColumn
ename=
"weight"
cname=
"库存重量(
T
)"
enable=
"false"
width=
"90"
align=
"right"
format=
"{0:N3}"
/>
<EF:EFComboColumn
ename=
"princ"
cname=
"仓库负责人"
width=
"120"
align=
"center"
enable=
"false"
blockName=
"user_block_id"
textField=
"textField"
valueField=
"valueField"
columnTemplate=
"#=textField#"
itemTemplate=
"#=textField#"
...
...
src/main/webapp/HP/SC/HPSC006C.jsp
View file @
463c9b35
...
...
@@ -66,7 +66,7 @@
align=
"right"
/>
<EF:EFColumn
ename=
"unitWeight"
cname=
"单重(KG)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"100"
align=
"right"
/>
<EF:EFColumn
ename=
"weight"
cname=
"重量(
KG
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"100"
<EF:EFColumn
ename=
"weight"
cname=
"重量(
T
)"
enable=
"false"
format=
"{0:N3}"
maxLength=
"20"
width=
"100"
align=
"right"
/>
<EF:EFColumn
ename=
"remark"
cname=
"备注"
enable=
"false"
width=
"100"
align=
"center"
/>
<EF:EFColumn
ename=
"oldReqNo"
cname=
"原领料单号"
enable=
"false"
width=
"140"
align=
"center"
/>
...
...
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