MesService.java
5.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package com.huaheng.api.mes.service;
import com.huaheng.api.mes.domain.*;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.config.material.domain.Material;
import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail;
import com.huaheng.pc.shipment.shipmentHeader.domain.ShipmentHeader;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface MesService {
/**
* 入库单下发
*
* @param mesOrder
* @return
*/
AjaxResult receiptOrder(MesOrder mesOrder);
/**
* 创建出库单
*
* @param mesOrder MES出库单
* @return 操作结果
*/
AjaxResult shipmentOrder(MesShipmentOrder mesOrder);
/**
* 成品出库
*/
//AjaxResult shipmentProduct(MesShipmentProduct mesShipmentProduct);
/**
* 物料入库
*/
AjaxResult receipt(MesReceipt mesReceipt);
/**
* MES呼叫物料
*/
AjaxResult shipment(MesShipment mesShipment);
/**
* MES 查询库存信息
*
* @param mesSearch 查询参数
* @return 库存信息
*/
AjaxResult searchInventory(MesSearch mesSearch);
/**
* 主工单下发
*
* @param mesWorkOrder 主工单
*/
AjaxResult workOrder(MesWorkOrder mesWorkOrder);
/**
* 出库回传
*
* @param taskHeaderId 任务id
*/
AjaxResult backShipment(Integer taskHeaderId);
/**
* 回传入库,根据单据
*
* @param id 任务id
*/
AjaxResult backReceipt(Integer id);
/**
* 回传空载具入/出库
*
* @param id 任务id
* @return
*/
AjaxResult backEmpty(Integer id);
/**
* 回传换站
*
* @param taskId 任务id
* @return
*/
AjaxResult backChangeStation(Integer taskId);
/**
* 锁定/冻结 原材料库存
*
* @param material 物料
* @param inventoryList 库存
* @param mesOrderMaterial 领料单物料
* @param shipmentHeader 领料单
* @param orderCode 工单号
*/
void lockRawInventory(Material material, List<InventoryDetail> inventoryList,
MesOrderMaterial mesOrderMaterial, ShipmentHeader shipmentHeader, String orderCode);
/**
* 载具流转
*/
AjaxResult createOverStation(MesOverStationDto mesOverStationDto);
/**
* wms 入库组盘
*
* @param mesReceipt 组盘参数
* @return
*/
AjaxResult wmsReceipt(MesReceipt mesReceipt);
/**
* MES检验查询
*
* @param mesSearchRequestByQCDto 检查查询Dto对象
* @return 查询结果
*/
AjaxResult searchInventoryByQC(MesSearchRequestByQCDto mesSearchRequestByQCDto);
/**
* MES质检抽样出库
*
* @param mesShipmentByQCDto 质检抽样Dto类型
* @return 出库结果
*/
AjaxResult shipmentByQC(MesShipmentByQCDto mesShipmentByQCDto);
/**
* 抽样质检余料回库
*
* @param mesReceiptByQCDto 抽样质检余料回库Dto对象
* @return 操作结果
*/
AjaxResult receiptByQC(MesReceiptByQCDto mesReceiptByQCDto);
/**
* 挪料
* @param mesMovingMaterialDto 挪料Dto对象
* @return 挪料结果
*/
AjaxResult movingMaterial(MesMovingMaterialDto mesMovingMaterialDto);
/**
* 工单状态同步
* @param workOrder 工单
* @return 同步结果
*/
AjaxResult syncWorkOrder(MesWorkOrder workOrder);
/**
* 根据ZS码从MES获取入库条码
*/
AjaxResult getMesTracingCode(String zs);
/**
* 清库
* @param clearStockDto 清库Dto对象
*/
AjaxResult clearStock(ClearStockDto clearStockDto);
/**
* 同步物料信息
*
* @param syncMaterialDtoList 同步物料信息Dto对象集合
*/
AjaxResult syncMaterial(List<SyncMaterialDto> syncMaterialDtoList);
/**
* 同步供应商信息
* @param syncSupplierDtoList 同步供应商信息Dto对象集合
*/
AjaxResult syncSupplier(List<SyncSupplierDto> syncSupplierDtoList);
/**
* 同步盛具类型信息
* @param syncVehicleTypeDtoList 同步盛具类型信息Dto对象集合
*/
AjaxResult syncVehicleType(List<SyncVehicleTypeDto> syncVehicleTypeDtoList);
/**
* 查询空库位
*
* @return 空库位
*/
AjaxResult<List<EmptyLocationDto>> queryEmptyLocation();
/**
* 查询药量
* @return 药量
*/
AjaxResult<?> queryPowder();
/**
* 查询固化时间
* @param querySolidifyTimeDto 查询参数
*/
AjaxResult<?> querySolidifyTime(QuerySolidifyTimeDto querySolidifyTimeDto);
/**
* 产出品/在制品出库
*/
AjaxResult<?> productShipmentDto(ProductShipmentDto productShipmentDto);
/**
* 质检查询盛具
* @param queryVehicleCodeByQCList 查询盛具工具集合
*/
AjaxResult<?> queryVehicleCodeByQC(@Param("queryVehicleCodeByQCList") List<QueryVehicleCodeByQCDto> queryVehicleCodeByQCList);
/**
* 更新物料质检状态
*/
AjaxResult<?> updateMaterialInspectStatus(UpdateMaterialInspectStatusDto updateMaterialInspectStatusDto);
}