ERPService.java 1.31 KB
package com.huaheng.api.erp.service;

import com.huaheng.api.erp.domain.BoxInfo;
import com.huaheng.framework.web.domain.AjaxResult;

import java.util.List;

public interface ERPService {

    AjaxResult innerReceipt(String containerCode, String position,String proSchedule, String orderCode,
                            String orderName, List<BoxInfo> boxInfoList,
                            String stack, int qc,int orderFinish);

    void common();
    /**
     * 同步部门
     */
    void dept();

    /**
     * 同步用户
     */
    void user();

    /**
     * 同步客户
     */
    void customer();

    /**
     * 同步物料
     */
    void material();

    /**
     * 同步包装
     */
    void proPackaging();

    /**
     * 同步产品尺寸
     */
    void productSize();

    /**
     * 同步仓库
     */
    void stock();

    /**
     * 同步仓位
     */
    void flexValues();

    /**
     * 同步计量单位
     */
    void unit();

    /**
     * 同步等级和色号
     */
    void bosAssistantDetail();

    /**
     * 排产订单
     */
    void productSchedule();

    AjaxResult shipmentMethod(String shipmentHeaderId);

    AjaxResult receiptMethod(String receiptHeaderId);

    /**
     * 下载 出库申请单 生成出库单
     */
    AjaxResult createShipmentByRequestBill();
}