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
adb6105f
"mall-portal/src/git@ustchcs.com:wwwanlingxiao/mall.git" did not exist on "705ea6b5b9bc0dcc5f498d326bfe421824adb802"
Commit
adb6105f
authored
Dec 24, 2016
by
季圣华
Browse files
采购入库,增加单行的金额,合计金额,付款账户,付款金额等字段,改动较大,为临时版本
parent
77e30a07
Changes
65
Hide whitespace changes
Inline
Side-by-side
src/com/jsh/model/vo/materials/DepotHeadModel.java
View file @
adb6105f
...
@@ -16,14 +16,11 @@ public class DepotHeadModel implements Serializable
...
@@ -16,14 +16,11 @@ public class DepotHeadModel implements Serializable
private
String
OperTime
;
private
String
OperTime
;
private
Long
OrganId
;
private
Long
OrganId
;
private
Long
HandsPersonId
;
private
Long
HandsPersonId
;
private
Long
WareHousePersonId
;
private
Long
AccountId
;
private
String
SettlementWay
=
""
;
private
Double
ChangeAmount
;
private
Long
BuildingId
;
private
Long
AllocationProjectId
;
private
Long
AllocationProjectId
;
private
Double
TotalPrice
;
private
String
Remark
=
""
;
private
String
Remark
=
""
;
private
String
State
=
""
;
private
String
ReAuditPersonName
=
""
;
private
String
Reason
=
""
;
private
String
BeginTime
;
//查询开始时间
private
String
BeginTime
;
//查询开始时间
private
String
EndTime
;
//查询结束时间
private
String
EndTime
;
//查询结束时间
...
@@ -117,28 +114,20 @@ public class DepotHeadModel implements Serializable
...
@@ -117,28 +114,20 @@ public class DepotHeadModel implements Serializable
HandsPersonId
=
handsPersonId
;
HandsPersonId
=
handsPersonId
;
}
}
public
Long
get
WareHousePerson
Id
()
{
public
Long
get
Account
Id
()
{
return
WareHousePerson
Id
;
return
Account
Id
;
}
}
public
void
set
WareHousePersonId
(
Long
wareHousePerson
Id
)
{
public
void
set
AccountId
(
Long
account
Id
)
{
WareHousePersonId
=
wareHousePerson
Id
;
AccountId
=
account
Id
;
}
}
public
String
getSettlementWay
()
{
public
Double
getChangeAmount
()
{
return
SettlementWay
;
return
ChangeAmount
;
}
}
public
void
setSettlementWay
(
String
settlementWay
)
{
public
void
setChangeAmount
(
Double
changeAmount
)
{
SettlementWay
=
settlementWay
;
ChangeAmount
=
changeAmount
;
}
public
Long
getBuildingId
()
{
return
BuildingId
;
}
public
void
setBuildingId
(
Long
buildingId
)
{
BuildingId
=
buildingId
;
}
}
public
Long
getAllocationProjectId
()
{
public
Long
getAllocationProjectId
()
{
...
@@ -149,36 +138,20 @@ public class DepotHeadModel implements Serializable
...
@@ -149,36 +138,20 @@ public class DepotHeadModel implements Serializable
AllocationProjectId
=
allocationProjectId
;
AllocationProjectId
=
allocationProjectId
;
}
}
public
String
getRemark
()
{
public
Double
getTotalPrice
()
{
return
Remark
;
return
TotalPrice
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getState
()
{
return
State
;
}
public
void
setState
(
String
state
)
{
State
=
state
;
}
public
String
getReAuditPersonName
()
{
return
ReAuditPersonName
;
}
}
public
void
set
ReAuditPersonName
(
String
reAuditPersonNam
e
)
{
public
void
set
TotalPrice
(
Double
totalPric
e
)
{
ReAuditPersonName
=
reAuditPersonNam
e
;
TotalPrice
=
totalPric
e
;
}
}
public
String
getRe
ason
()
{
public
String
getRe
mark
()
{
return
Re
ason
;
return
Re
mark
;
}
}
public
void
setRe
ason
(
String
re
ason
)
{
public
void
setRe
mark
(
String
re
mark
)
{
Re
ason
=
re
ason
;
Re
mark
=
re
mark
;
}
}
public
Long
getDepotHeadID
()
{
public
Long
getDepotHeadID
()
{
...
...
src/com/jsh/model/vo/materials/DepotItemModel.java
View file @
adb6105f
...
@@ -13,7 +13,7 @@ public class DepotItemModel implements Serializable
...
@@ -13,7 +13,7 @@ public class DepotItemModel implements Serializable
private
Long
MaterialId
;
private
Long
MaterialId
;
private
Double
OperNumber
;
private
Double
OperNumber
;
private
Double
UnitPrice
;
private
Double
UnitPrice
;
private
Double
Incidentals
;
private
Double
AllPrice
;
private
String
Remark
=
""
;
private
String
Remark
=
""
;
private
String
Img
=
""
;
private
String
Img
=
""
;
...
@@ -100,12 +100,12 @@ public class DepotItemModel implements Serializable
...
@@ -100,12 +100,12 @@ public class DepotItemModel implements Serializable
UnitPrice
=
unitPrice
;
UnitPrice
=
unitPrice
;
}
}
public
Double
get
Incidentals
()
{
public
Double
get
AllPrice
()
{
return
Incidentals
;
return
AllPrice
;
}
}
public
void
set
Incidentals
(
Double
incidentals
)
{
public
void
set
AllPrice
(
Double
allPrice
)
{
Incidentals
=
incidentals
;
AllPrice
=
allPrice
;
}
}
public
String
getRemark
()
{
public
String
getRemark
()
{
...
...
src/com/jsh/model/vo/materials/PersonModel.java
View file @
adb6105f
...
@@ -8,10 +8,6 @@ public class PersonModel implements Serializable
...
@@ -8,10 +8,6 @@ public class PersonModel implements Serializable
private
PersonShowModel
showModel
=
new
PersonShowModel
();
private
PersonShowModel
showModel
=
new
PersonShowModel
();
/**======开始接受页面参数=================**/
/**======开始接受页面参数=================**/
/**
* ProjectId
*/
private
Long
ProjectId
;
/**
/**
* 类型
* 类型
*/
*/
...
@@ -54,14 +50,6 @@ public class PersonModel implements Serializable
...
@@ -54,14 +50,6 @@ public class PersonModel implements Serializable
this
.
showModel
=
showModel
;
this
.
showModel
=
showModel
;
}
}
public
Long
getProjectId
()
{
return
ProjectId
;
}
public
void
setProjectId
(
Long
projectId
)
{
ProjectId
=
projectId
;
}
public
String
getType
()
{
public
String
getType
()
{
return
Type
;
return
Type
;
}
}
...
...
src/com/jsh/service/materials/BuildingIService.java
deleted
100644 → 0
View file @
77e30a07
package
com.jsh.service.materials
;
import
com.jsh.base.BaseIService
;
import
com.jsh.model.po.Building
;
public
interface
BuildingIService
extends
BaseIService
<
Building
>
{
}
src/com/jsh/service/materials/BuildingService.java
deleted
100644 → 0
View file @
77e30a07
package
com.jsh.service.materials
;
import
com.jsh.base.BaseService
;
import
com.jsh.dao.materials.BuildingIDAO
;
import
com.jsh.model.po.Building
;
public
class
BuildingService
extends
BaseService
<
Building
>
implements
BuildingIService
{
@SuppressWarnings
(
"unused"
)
private
BuildingIDAO
buildingDao
;
public
void
setBuildingDao
(
BuildingIDAO
buildingDao
)
{
this
.
buildingDao
=
buildingDao
;
}
@Override
protected
Class
<
Building
>
getEntityClass
()
{
return
Building
.
class
;
}
}
Prev
1
2
3
4
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