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.
 

29 lines
814 B

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; }
}
}