后道触摸屏满箱提交
This commit is contained in:
@@ -67,6 +67,18 @@ namespace ZR.Service.Business.IBusinessService
|
||||
/// <returns></returns>
|
||||
string ScanInnerLabel(QcBackEndLabelScanDto data);
|
||||
|
||||
/// <summary>
|
||||
/// 扫内标签后检查是否满箱并需要扫箱标签
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
bool CheckPackageIsFullAndNeedScanPackageLabel(string workorder);
|
||||
|
||||
/// <summary>
|
||||
/// 触摸屏扫箱标签检验
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
string ScanPackageLabel(QcBackEndLabelScanDto data);
|
||||
|
||||
/// <summary>
|
||||
/// 结束工单并生成质量报表
|
||||
/// </summary>
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using ZR.Model;
|
||||
using ZR.Model.Dto;
|
||||
using ZR.Model.Business;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace ZR.Service.Business.IBusinessService
|
||||
{
|
||||
/// <summary>
|
||||
/// 后道标签打印记录service接口
|
||||
/// </summary>
|
||||
public interface IQcBackendRecordLabelPrintService : IBaseService<QcBackendRecordLabelPrint>
|
||||
{
|
||||
PagedInfo<QcBackendRecordLabelPrintDto> GetList(QcBackendRecordLabelPrintQueryDto parm);
|
||||
|
||||
QcBackendRecordLabelPrint GetInfo(string Id);
|
||||
|
||||
QcBackendRecordLabelPrint AddQcBackendRecordLabelPrint(QcBackendRecordLabelPrint parm);
|
||||
|
||||
int UpdateQcBackendRecordLabelPrint(QcBackendRecordLabelPrint parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user