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
79248345
Commit
79248345
authored
Jun 10, 2021
by
季圣华
Browse files
校验单据的明细是否数据不全
parent
c2953567
Changes
19
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/bill/modules/AllocationOutModal.vue
View file @
79248345
...
...
@@ -90,8 +90,12 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
...
...
@@ -99,7 +103,9 @@
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
调入仓库
'
,
key
:
'
anotherDepotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/AssembleModal.vue
View file @
79248345
...
...
@@ -92,15 +92,21 @@
dataSource
:
[],
columns
:
[
{
title
:
'
商品类型
'
,
key
:
'
mType
'
,
width
:
'
7%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/DisassembleModal.vue
View file @
79248345
...
...
@@ -92,15 +92,21 @@
dataSource
:
[],
columns
:
[
{
title
:
'
商品类型
'
,
key
:
'
mType
'
,
width
:
'
7%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/OtherInModal.vue
View file @
79248345
...
...
@@ -98,15 +98,21 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/OtherOutModal.vue
View file @
79248345
...
...
@@ -98,15 +98,21 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/PurchaseBackModal.vue
View file @
79248345
...
...
@@ -152,20 +152,26 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税率(%)
'
,
key
:
'
taxRate
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
]
...
...
jshERP-web/src/views/bill/modules/PurchaseInModal.vue
View file @
79248345
...
...
@@ -161,15 +161,21 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
...
...
jshERP-web/src/views/bill/modules/PurchaseOrderModal.vue
View file @
79248345
...
...
@@ -101,15 +101,21 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
12%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
12%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/RetailBackModal.vue
View file @
79248345
...
...
@@ -131,15 +131,21 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
9%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/RetailOutModal.vue
View file @
79248345
...
...
@@ -138,15 +138,21 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
9%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/SaleBackModal.vue
View file @
79248345
...
...
@@ -157,20 +157,26 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税率(%)
'
,
key
:
'
taxRate
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
]
...
...
jshERP-web/src/views/bill/modules/SaleOrderModal.vue
View file @
79248345
...
...
@@ -104,15 +104,21 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
...
...
jshERP-web/src/views/bill/modules/SaleOutModal.vue
View file @
79248345
...
...
@@ -165,20 +165,26 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
popupJsh
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税率(%)
'
,
key
:
'
taxRate
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
]
...
...
jshERP-web/src/views/financial/modules/AdvanceInModal.vue
View file @
79248345
...
...
@@ -113,8 +113,12 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
},
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
30%
'
,
type
:
FormTypes
.
input
,
placeholder
:
'
请选择${title}
'
}
]
},
...
...
jshERP-web/src/views/financial/modules/GiroModal.vue
View file @
79248345
...
...
@@ -57,7 +57,7 @@
<a-row
class=
"form-row"
:gutter=
"24"
>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
<a-form-item
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"付款账户"
>
<a-select
placeholder=
"选择付款账户"
v-decorator=
"[ 'accountId' ]"
:dropdownMatchSelectWidth=
"false"
>
<a-select
placeholder=
"选择付款账户"
v-decorator=
"[ 'accountId'
, validatorRules.accountId
]"
:dropdownMatchSelectWidth=
"false"
>
<a-select-option
v-for=
"(item,index) in accountList"
:key=
"index"
:value=
"item.id"
>
{{
item
.
name
}}
</a-select-option>
...
...
@@ -66,7 +66,7 @@
</a-col>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
<a-form-item
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"实付金额"
>
<a-input
placeholder=
"请输入实付金额"
v-decorator.trim=
"[ 'changeAmount' ]"
/>
<a-input
placeholder=
"请输入实付金额"
v-decorator.trim=
"[ 'changeAmount'
, validatorRules.changeAmount
]"
/>
</a-form-item>
</a-col>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
...
...
@@ -113,8 +113,12 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
},
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
30%
'
,
type
:
FormTypes
.
input
,
placeholder
:
'
请选择${title}
'
}
]
},
...
...
@@ -124,6 +128,16 @@
rules
:
[
{
required
:
true
,
message
:
'
请选择经手人!
'
}
]
},
accountId
:{
rules
:
[
{
required
:
true
,
message
:
'
请选择付款账户!
'
}
]
},
changeAmount
:{
rules
:
[
{
required
:
true
,
message
:
'
请输入实付金额!
'
}
]
}
},
url
:
{
...
...
jshERP-web/src/views/financial/modules/ItemInModal.vue
View file @
79248345
...
...
@@ -64,7 +64,7 @@
<a-row
class=
"form-row"
:gutter=
"24"
>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
<a-form-item
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"收款账户"
>
<a-select
placeholder=
"选择收款账户"
v-decorator=
"[ 'accountId' ]"
:dropdownMatchSelectWidth=
"false"
>
<a-select
placeholder=
"选择收款账户"
v-decorator=
"[ 'accountId'
, validatorRules.accountId
]"
:dropdownMatchSelectWidth=
"false"
>
<a-select-option
v-for=
"(item,index) in accountList"
:key=
"index"
:value=
"item.id"
>
{{
item
.
name
}}
</a-select-option>
...
...
@@ -73,7 +73,7 @@
</a-col>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
<a-form-item
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"收款金额"
>
<a-input
placeholder=
"请输入收款金额"
v-decorator.trim=
"[ 'changeAmount' ]"
/>
<a-input
placeholder=
"请输入收款金额"
v-decorator.trim=
"[ 'changeAmount'
, validatorRules.changeAmount
]"
/>
</a-form-item>
</a-col>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
...
...
@@ -120,8 +120,12 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
收入项目
'
,
key
:
'
inOutItemId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
},
{
title
:
'
收入项目
'
,
key
:
'
inOutItemId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
30%
'
,
type
:
FormTypes
.
input
,
placeholder
:
'
请选择${title}
'
}
]
},
...
...
@@ -136,6 +140,16 @@
rules
:
[
{
required
:
true
,
message
:
'
请选择经手人!
'
}
]
},
accountId
:{
rules
:
[
{
required
:
true
,
message
:
'
请选择收款账户!
'
}
]
},
changeAmount
:{
rules
:
[
{
required
:
true
,
message
:
'
请输入收款金额!
'
}
]
}
},
url
:
{
...
...
jshERP-web/src/views/financial/modules/ItemOutModal.vue
View file @
79248345
...
...
@@ -64,7 +64,7 @@
<a-row
class=
"form-row"
:gutter=
"24"
>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
<a-form-item
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"付款账户"
>
<a-select
placeholder=
"选择付款账户"
v-decorator=
"[ 'accountId' ]"
:dropdownMatchSelectWidth=
"false"
>
<a-select
placeholder=
"选择付款账户"
v-decorator=
"[ 'accountId'
, validatorRules.accountId
]"
:dropdownMatchSelectWidth=
"false"
>
<a-select-option
v-for=
"(item,index) in accountList"
:key=
"index"
:value=
"item.id"
>
{{
item
.
name
}}
</a-select-option>
...
...
@@ -73,7 +73,7 @@
</a-col>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
<a-form-item
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"付款金额"
>
<a-input
placeholder=
"请输入付款金额"
v-decorator.trim=
"[ 'changeAmount' ]"
/>
<a-input
placeholder=
"请输入付款金额"
v-decorator.trim=
"[ 'changeAmount'
, validatorRules.changeAmount
]"
/>
</a-form-item>
</a-col>
<a-col
:lg=
"6"
:md=
"12"
:sm=
"24"
>
...
...
@@ -120,8 +120,12 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
支出项目
'
,
key
:
'
inOutItemId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
},
{
title
:
'
支出项目
'
,
key
:
'
inOutItemId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
30%
'
,
type
:
FormTypes
.
input
,
placeholder
:
'
请选择${title}
'
}
]
},
...
...
@@ -136,6 +140,16 @@
rules
:
[
{
required
:
true
,
message
:
'
请选择经手人!
'
}
]
},
accountId
:{
rules
:
[
{
required
:
true
,
message
:
'
请选择付款账户!
'
}
]
},
changeAmount
:{
rules
:
[
{
required
:
true
,
message
:
'
请输入付款金额!
'
}
]
}
},
url
:
{
...
...
jshERP-web/src/views/financial/modules/MoneyInModal.vue
View file @
79248345
...
...
@@ -113,8 +113,12 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
},
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
30%
'
,
type
:
FormTypes
.
input
,
placeholder
:
'
请选择${title}
'
}
]
},
...
...
jshERP-web/src/views/financial/modules/MoneyOutModal.vue
View file @
79248345
...
...
@@ -113,8 +113,12 @@
loading
:
false
,
dataSource
:
[],
columns
:
[
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[]},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
},
{
title
:
'
账户名称
'
,
key
:
'
accountId
'
,
width
:
'
20%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
金额
'
,
key
:
'
eachAmount
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
placeholder
:
'
请选择${title}
'
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
30%
'
,
type
:
FormTypes
.
input
,
placeholder
:
'
请选择${title}
'
}
]
},
...
...
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