40 lines
1.1 KiB
C#
40 lines
1.1 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 group_code, string line_code, DateTime handleDate);
|
|
|
|
|
|
int LabelWorkOrderMatch(string LabelContext, string workOrder);
|
|
|
|
|
|
int FinishWorkOrder(ProReportwork reportWorkDto);
|
|
|
|
}
|
|
}
|