using Aborlen.Model;
|
|
using Monitor.FrameWork;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WorkStationBase;
|
|
|
|
namespace Aborlen.WorkStation
|
|
{
|
|
public partial class WorkStation03 : StationBase
|
|
{
|
|
|
|
public override void StationInit()
|
|
{
|
|
VerifyBarcodes = new List<string>();
|
|
//托盘到达,更新条码验证规则 查询产品型号
|
|
ProductTypeCode = Convert.ToByte(Read(1180));
|
|
//查询订单
|
|
PresentOrder = ProductOrder.Query().Where(p => p.product_id == ProductTypeCode).OrderBy(p => p.id, OrderByType.Desc).First();
|
|
|
|
View_OP40 = new CommonView();
|
|
}
|
|
|
|
public string ProductCode { get; set; }
|
|
}
|
|
}
|