11
This commit is contained in:
@@ -243,6 +243,11 @@ namespace BLL
|
||||
/// </summary>
|
||||
public const string WelderQueTemplateUrl = "File\\Excel\\WelderQue.xlsx";
|
||||
|
||||
/// <summary>
|
||||
/// 委托单导入模板
|
||||
/// </summary>
|
||||
public const string HJGL_TrustInTemplateUrl = "File\\Excel\\HJGL_DataIn\\TrustIn.xlsx";
|
||||
|
||||
/// <summary>
|
||||
/// 检测单导入模版文件原始的虚拟路径
|
||||
/// </summary>
|
||||
|
||||
@@ -92,7 +92,7 @@ namespace BLL
|
||||
public static List<Model.Batch_PointBatchItem> GetExportItem(string repairRecordId)
|
||||
{
|
||||
Model.HJGLDB db = Funs.DB;
|
||||
var exp =from x in db.Batch_PointBatchItem where x.RepairRecordId == repairRecordId select x;
|
||||
var exp =from x in db.Batch_PointBatchItem where x.RepairRecordId == repairRecordId && x.PointState == "2" select x;
|
||||
if (exp.Count() > 0)
|
||||
{
|
||||
return exp.ToList();
|
||||
|
||||
Reference in New Issue
Block a user