38 lines
958 B
C#
38 lines
958 B
C#
using DOAN.Model.MES.base_;
|
|
using DOAN.Model.MES.mm;
|
|
using DOAN.Model.MES.product;
|
|
using DOAN.Model.Mobile.Dto;
|
|
using DOAN.Service.MES.mm;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.Mobile.IService
|
|
{
|
|
public interface IPreparationTaskService
|
|
{
|
|
|
|
List<BaseWorkRoute> GetLines();
|
|
|
|
List<ProWorkorder> GetWorkOrderList(DateTime HandleDate, string route_code);
|
|
|
|
MaterialModel ParseMaterialCode(string materialCode);
|
|
List<MmPreparationTask> GetWorkorderTask(string workorder);
|
|
|
|
|
|
|
|
List<MmTaskMaterialInfo> GetTaskInfos(string task_code);
|
|
|
|
int GenerateIngredientTask(IngredientTaskRequestForm form);
|
|
|
|
List<MmPreparationTaskLine> SearchTaskByLine(string lineCode, DateTime hadleDate);
|
|
|
|
|
|
List<MmTaskMaterialInfoByLine> GetTaskInfosByLine(string task_code);
|
|
|
|
}
|
|
}
|