ERPService.java
1.65 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
package com.huaheng.api.erp.service;
import com.huaheng.api.erp.domain.BoxInfo;
import com.huaheng.api.erp.domain.MaterialInfo;
import com.huaheng.framework.web.domain.AjaxResult;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
public interface ERPService {
AjaxResult innerReceipt(String containerCode, String position, String orderCode,
String orderName, List<BoxInfo> boxInfoList,
String stack, int qc);
AjaxResult innerShipment(String shipmentCode, String shipmentType, String carType, String order,
List<MaterialInfo> materialList, String remake, Date scheduleDate, BigDecimal totalQty);
/**
* 同步部门 begin --> end 有问题
*/
void dept();
/**
* 同步用户 begin --> end ok
*/
void user();
/**
* 同步客户 begin --> end 有问题待解决
*/
void customer();
/**
* 同步物料 begin --> end ok
*/
void material();
/**
* 同步包装 begin --> end
*/
void proPackaging();
/**
* 同步产品尺寸 begin --> end
*/
void productSize();
/**
* 同步仓库 begin --> end
*/
void stock();
/**
* 同步仓位 begin --> end
*/
void flexValues();
/**
* 同步计量单位 begin --> end
*/
void unit();
/**
* 同步等级和色号 begin --> end
*/
void bosAssistantDetail();
/**
* 排产订单 begin -->
*/
void productSchedule();
AjaxResult shipmentMethod(String shipmentHeaderId);
AjaxResult receiptMethod(String receiptHeaderId);
}