42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DOAN.Model.JobKanban;
|
|
using DOAN.Model.MES.base_;
|
|
using DOAN.Model.MES.product;
|
|
using DOAN.Model.MES.product.Dto;
|
|
namespace DOAN.Service.JobKanban.IService
|
|
{
|
|
public interface IWorkorderProgressService
|
|
{
|
|
|
|
List<BaseWorkRoute> GetRoutes();
|
|
List<BaseGroup> GetGroups();
|
|
|
|
|
|
List<ProWorkorder> GetWorkOrderList(string group_code, string line_code, DateTime handleDate);
|
|
|
|
List<ProWorkorderDto4> GetWorkOrderListNoFinish(DateTime today, string line_code, string group_code);
|
|
|
|
|
|
|
|
ProWorkorderDto4 GetWorkOrderDetail(string workorder);
|
|
|
|
KanbanInfo GetKanbanNum(DateTime today, string line_code, string group_code);
|
|
int StartWorkOrder(string workorder);
|
|
int FinishWorkOrder(string workorder);
|
|
ProWorkorder GetProductingWorkorder(string line_code, DateTime handleDate);
|
|
int AddLabelLog(string labelContext, string workOrder);
|
|
|
|
int LabelWorkOrderMatch(string LabelContext, string workOrder);
|
|
|
|
|
|
int ErrorProofingAndReportingWork(string workorder, string labelContext);
|
|
|
|
int FinishAndReportWorkorder(string workorder, int finish_num);
|
|
|
|
}
|
|
}
|