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
5bf41a3b
Commit
5bf41a3b
authored
Jul 28, 2021
by
季圣华
Browse files
给单据增加sku字段
parent
1f166552
Changes
37
Show whitespace changes
Inline
Side-by-side
jshERP-web/src/views/bill/modules/DisassembleModal.vue
View file @
5bf41a3b
...
@@ -78,7 +78,7 @@
...
@@ -78,7 +78,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -102,18 +102,19 @@
...
@@ -102,18 +102,19 @@
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
商品类型
'
,
key
:
'
mType
'
,
width
:
'
7%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
商品类型
'
,
key
:
'
mType
'
,
width
:
'
7%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
...
...
jshERP-web/src/views/bill/modules/OtherInModal.vue
View file @
5bf41a3b
...
@@ -86,7 +86,7 @@
...
@@ -86,7 +86,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -109,18 +109,19 @@
...
@@ -109,18 +109,19 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
...
...
jshERP-web/src/views/bill/modules/OtherOutModal.vue
View file @
5bf41a3b
...
@@ -86,7 +86,7 @@
...
@@ -86,7 +86,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -109,18 +109,19 @@
...
@@ -109,18 +109,19 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
...
...
jshERP-web/src/views/bill/modules/PurchaseBackModal.vue
View file @
5bf41a3b
...
@@ -148,7 +148,7 @@
...
@@ -148,7 +148,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -171,27 +171,28 @@
...
@@ -171,27 +171,28 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税率
(%)
'
,
key
:
'
taxRate
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
税率
'
,
key
:
'
taxRate
'
,
width
:
'
3
%
'
,
type
:
FormTypes
.
inputNumber
,
placeholder
:
'
%
'
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
4
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
]
]
},
},
...
...
jshERP-web/src/views/bill/modules/PurchaseInModal.vue
View file @
5bf41a3b
...
@@ -149,7 +149,7 @@
...
@@ -149,7 +149,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -172,27 +172,28 @@
...
@@ -172,27 +172,28 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税率
(%)
'
,
key
:
'
taxRate
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
税率
'
,
key
:
'
taxRate
'
,
width
:
'
4
%
'
,
type
:
FormTypes
.
inputNumber
,
placeholder
:
'
%
'
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
4
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
]
]
},
},
...
...
jshERP-web/src/views/bill/modules/PurchaseOrderModal.vue
View file @
5bf41a3b
...
@@ -86,7 +86,7 @@
...
@@ -86,7 +86,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -112,24 +112,25 @@
...
@@ -112,24 +112,25 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
12
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
}
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
}
]
]
},
},
confirmLoading
:
false
,
confirmLoading
:
false
,
...
...
jshERP-web/src/views/bill/modules/RetailBackModal.vue
View file @
5bf41a3b
...
@@ -130,7 +130,7 @@
...
@@ -130,7 +130,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -153,24 +153,25 @@
...
@@ -153,24 +153,25 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
1
0
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
1
2
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
7%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
9
%
'
,
type
:
FormTypes
.
input
}
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
}
]
]
},
},
confirmLoading
:
false
,
confirmLoading
:
false
,
...
...
jshERP-web/src/views/bill/modules/RetailOutModal.vue
View file @
5bf41a3b
...
@@ -129,7 +129,7 @@
...
@@ -129,7 +129,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -153,24 +153,25 @@
...
@@ -153,24 +153,25 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
1
0
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
1
2
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
10%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
型号
'
,
key
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
8%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
7%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
单位
'
,
key
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
数量
'
,
key
:
'
operNumber
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
9
%
'
,
type
:
FormTypes
.
input
}
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
}
]
]
},
},
confirmLoading
:
false
,
confirmLoading
:
false
,
...
...
jshERP-web/src/views/bill/modules/SaleBackModal.vue
View file @
5bf41a3b
...
@@ -153,7 +153,7 @@
...
@@ -153,7 +153,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -176,27 +176,28 @@
...
@@ -176,27 +176,28 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税率
(%)
'
,
key
:
'
taxRate
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
税率
'
,
key
:
'
taxRate
'
,
width
:
'
3
%
'
,
type
:
FormTypes
.
inputNumber
,
placeholder
:
'
%
'
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
4
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
]
]
},
},
...
...
jshERP-web/src/views/bill/modules/SaleOrderModal.vue
View file @
5bf41a3b
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -115,18 +115,19 @@
...
@@ -115,18 +115,19 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
...
...
jshERP-web/src/views/bill/modules/SaleOutModal.vue
View file @
5bf41a3b
...
@@ -153,7 +153,7 @@
...
@@ -153,7 +153,7 @@
data
()
{
data
()
{
return
{
return
{
title
:
"
操作
"
,
title
:
"
操作
"
,
width
:
'
1
45
0px
'
,
width
:
'
1
60
0px
'
,
moreStatus
:
false
,
moreStatus
:
false
,
// 新增时子表默认添加几行空数据
// 新增时子表默认添加几行空数据
addDefaultRowNum
:
1
,
addDefaultRowNum
:
1
,
...
@@ -176,27 +176,28 @@
...
@@ -176,27 +176,28 @@
loading
:
false
,
loading
:
false
,
dataSource
:
[],
dataSource
:
[],
columns
:
[
columns
:
[
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
{
title
:
'
仓库名称
'
,
key
:
'
depotId
'
,
width
:
'
7
%
'
,
type
:
FormTypes
.
select
,
placeholder
:
'
请选择${title}
'
,
options
:
[],
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
allowSearch
:
true
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
10
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
{
title
:
'
条码
'
,
key
:
'
barCode
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
popupJsh
,
multi
:
false
,
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
8
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
名称
'
,
key
:
'
name
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
规格
'
,
key
:
'
standard
'
,
width
:
'
5%
'
,
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
:
'
model
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
扩展信息
'
,
key
:
'
materialOther
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
库存
'
,
key
:
'
stock
'
,
width
:
'
5%
'
,
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
:
'
unit
'
,
width
:
'
4%
'
,
type
:
FormTypes
.
input
,
readonly
:
true
},
{
title
:
'
多属性
'
,
key
:
'
sku
'
,
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}不能为空
'
}]
validateRules
:
[{
required
:
true
,
message
:
'
${title}不能为空
'
}]
},
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
单价
'
,
key
:
'
unitPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
含税单价
'
,
key
:
'
taxUnitPrice
'
,
width
:
'
6%
'
,
type
:
FormTypes
.
inputNumber
,
readonly
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
金额
'
,
key
:
'
allPrice
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
税率
(%)
'
,
key
:
'
taxRate
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
},
{
title
:
'
税率
'
,
key
:
'
taxRate
'
,
width
:
'
3
%
'
,
type
:
FormTypes
.
inputNumber
,
placeholder
:
'
%
'
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
税额
'
,
key
:
'
taxMoney
'
,
width
:
'
4
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
,
readonly
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
6
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
价税合计
'
,
key
:
'
taxLastMoney
'
,
width
:
'
5
%
'
,
type
:
FormTypes
.
inputNumber
,
statistics
:
true
},
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
{
title
:
'
备注
'
,
key
:
'
remark
'
,
width
:
'
5%
'
,
type
:
FormTypes
.
input
}
]
]
},
},
...
...
jshERP-web/src/views/financial/AdvanceInList.vue
View file @
5bf41a3b
...
@@ -147,16 +147,6 @@
...
@@ -147,16 +147,6 @@
},
},
// 表头
// 表头
columns
:
[
columns
:
[
{
title
:
'
#
'
,
dataIndex
:
''
,
key
:
'
rowIndex
'
,
width
:
40
,
align
:
"
center
"
,
customRender
:
function
(
t
,
r
,
index
)
{
return
parseInt
(
index
)
+
1
;
}
},
{
title
:
'
付款会员
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
付款会员
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
...
...
jshERP-web/src/views/financial/GiroList.vue
View file @
5bf41a3b
...
@@ -137,16 +137,6 @@
...
@@ -137,16 +137,6 @@
},
},
// 表头
// 表头
columns
:
[
columns
:
[
{
title
:
'
#
'
,
dataIndex
:
''
,
key
:
'
rowIndex
'
,
width
:
40
,
align
:
"
center
"
,
customRender
:
function
(
t
,
r
,
index
)
{
return
parseInt
(
index
)
+
1
;
}
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
{
title
:
'
单据日期
'
,
dataIndex
:
'
billTimeStr
'
,
width
:
160
},
{
title
:
'
单据日期
'
,
dataIndex
:
'
billTimeStr
'
,
width
:
160
},
...
...
jshERP-web/src/views/financial/ItemInList.vue
View file @
5bf41a3b
...
@@ -147,16 +147,6 @@
...
@@ -147,16 +147,6 @@
},
},
// 表头
// 表头
columns
:
[
columns
:
[
{
title
:
'
#
'
,
dataIndex
:
''
,
key
:
'
rowIndex
'
,
width
:
40
,
align
:
"
center
"
,
customRender
:
function
(
t
,
r
,
index
)
{
return
parseInt
(
index
)
+
1
;
}
},
{
title
:
'
客户
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
客户
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
...
...
jshERP-web/src/views/financial/ItemOutList.vue
View file @
5bf41a3b
...
@@ -147,16 +147,6 @@
...
@@ -147,16 +147,6 @@
},
},
// 表头
// 表头
columns
:
[
columns
:
[
{
title
:
'
#
'
,
dataIndex
:
''
,
key
:
'
rowIndex
'
,
width
:
40
,
align
:
"
center
"
,
customRender
:
function
(
t
,
r
,
index
)
{
return
parseInt
(
index
)
+
1
;
}
},
{
title
:
'
供应商
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
供应商
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
...
...
jshERP-web/src/views/financial/MoneyInList.vue
View file @
5bf41a3b
...
@@ -148,16 +148,6 @@
...
@@ -148,16 +148,6 @@
},
},
// 表头
// 表头
columns
:
[
columns
:
[
{
title
:
'
#
'
,
dataIndex
:
''
,
key
:
'
rowIndex
'
,
width
:
40
,
align
:
"
center
"
,
customRender
:
function
(
t
,
r
,
index
)
{
return
parseInt
(
index
)
+
1
;
}
},
{
title
:
'
客户
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
客户
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
...
...
jshERP-web/src/views/financial/MoneyOutList.vue
View file @
5bf41a3b
...
@@ -148,16 +148,6 @@
...
@@ -148,16 +148,6 @@
},
},
// 表头
// 表头
columns
:
[
columns
:
[
{
title
:
'
#
'
,
dataIndex
:
''
,
key
:
'
rowIndex
'
,
width
:
40
,
align
:
"
center
"
,
customRender
:
function
(
t
,
r
,
index
)
{
return
parseInt
(
index
)
+
1
;
}
},
{
title
:
'
供应商
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
供应商
'
,
dataIndex
:
'
organName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
财务人员
'
,
dataIndex
:
'
handsPersonName
'
,
width
:
140
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
{
title
:
'
单据编号
'
,
dataIndex
:
'
billNo
'
,
width
:
160
},
...
...
Prev
1
2
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