You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
811 B
23 lines
811 B
using JHReport.DAL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Warehouse.Models.mesModel;
|
|
|
|
namespace Warehouse.DAL.Report
|
|
{
|
|
public class FinishProductLinePositionsDal
|
|
{
|
|
public List<dynamic> FinishProductLinePositions(string area_code, string sale_order, string stations, string WorkOrder, string Container, string Palletnbr, string Serialnbr)
|
|
{
|
|
using (var context = new mesModel())
|
|
{
|
|
ReportDal report = new ReportDal();
|
|
string sql = report.FinishProductLinePositionsSql(area_code, sale_order, stations, WorkOrder, Container, Palletnbr,Serialnbr);
|
|
var res = context.DynamicListFromSql(sql, null);
|
|
return res.ToList();
|
|
}
|
|
}
|
|
}
|
|
}
|