油漆实验室添加产品描述
This commit is contained in:
@@ -395,7 +395,8 @@ namespace ZR.Service.mes.qc
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize,
|
||||
int type
|
||||
int type,
|
||||
int sortType = 0
|
||||
)
|
||||
{
|
||||
try
|
||||
@@ -414,7 +415,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
),
|
||||
// 抛光
|
||||
2
|
||||
@@ -426,7 +428,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
),
|
||||
// 包装
|
||||
3
|
||||
@@ -438,7 +441,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
),
|
||||
// 总表
|
||||
4
|
||||
@@ -450,7 +454,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
),
|
||||
_ => throw new Exception("获取的报表类型错误!" + type),
|
||||
};
|
||||
@@ -469,7 +474,8 @@ namespace ZR.Service.mes.qc
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize
|
||||
int pageSize,
|
||||
int sortType
|
||||
)
|
||||
{
|
||||
List<QcQualityStatisticsFirst> list = GetQualityStatisticsTable_first(
|
||||
@@ -480,7 +486,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
).Item1;
|
||||
List<QcQualityStatisticsFirstDto> newList = list.Select(
|
||||
item => new QcQualityStatisticsFirstDto()
|
||||
@@ -548,7 +555,8 @@ namespace ZR.Service.mes.qc
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize
|
||||
int pageSize,
|
||||
int sortType
|
||||
)
|
||||
{
|
||||
List<QcQualityStatisticsAgain> list = GetQualityStatisticsTable_again(
|
||||
@@ -559,7 +567,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
).Item1;
|
||||
List<QcQualityStatisticsFirstDto> newList = list.Select(
|
||||
item => new QcQualityStatisticsFirstDto()
|
||||
@@ -627,7 +636,8 @@ namespace ZR.Service.mes.qc
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize
|
||||
int pageSize,
|
||||
int sortType
|
||||
)
|
||||
{
|
||||
List<QcQualityStatisticsFinal> list = GetQualityStatisticsTable_final(
|
||||
@@ -638,7 +648,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
).Item1;
|
||||
List<QcQualityStatisticsFirstDto> newList = list.Select(
|
||||
item => new QcQualityStatisticsFirstDto()
|
||||
@@ -706,7 +717,8 @@ namespace ZR.Service.mes.qc
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize
|
||||
int pageSize,
|
||||
int sortType
|
||||
)
|
||||
{
|
||||
List<QcQualityStatisticsTotal> list = GetQualityStatisticsTable_total(
|
||||
@@ -717,7 +729,8 @@ namespace ZR.Service.mes.qc
|
||||
product_description,
|
||||
team,
|
||||
pageNum,
|
||||
pageSize
|
||||
pageSize,
|
||||
sortType
|
||||
).Item1;
|
||||
List<QcQualityStatisticsFirstDto> newList = list.Select(
|
||||
item => new QcQualityStatisticsFirstDto()
|
||||
|
||||
Reference in New Issue
Block a user