package com.mandi.webservice.service;
|
|
import java.util.Map;
|
|
import com.google.gson.JsonArray;
|
import com.mandi.dao.common.ObjectResult;
|
import com.mandi.dao.common.PageResult;
|
|
public interface IFdXSTDService {
|
|
/**
|
* 新增
|
* @param dataArr
|
* @return
|
* @throws Exception
|
*/
|
public ObjectResult<Boolean> saveFd_xstd(String dataArr)throws Exception;
|
|
|
/**
|
* 删除发货单
|
* @param dataArr
|
* @return
|
* @throws Exception
|
*/
|
public ObjectResult<Boolean> delFd_xstd(String dataArr)throws Exception;
|
|
|
/**
|
* 关闭分单:修改分单明细的关闭状态
|
* @param dataArr
|
* @return
|
* @throws Exception
|
*/
|
public ObjectResult<Boolean> closeFd_xstd(String dataArr)throws Exception;
|
|
|
/**
|
* 打开分单:修改分单明细的关闭状态
|
* @param dataArr
|
* @return
|
* @throws Exception
|
*/
|
public ObjectResult<Boolean> openFd_xstd(String dataArr)throws Exception;
|
|
|
/**
|
* 添加装车明细:生产系统添加装车明细
|
* @param cardID
|
* @param yktywdh
|
* @param dataArr
|
* @return
|
* @throws Exception
|
*/
|
public PageResult<Map<String, Object>> addZCMX(String cardID,String yktywdh,JsonArray dataArr)throws Exception;
|
|
/**
|
* 删除装车明细:生产系统删除装车明细
|
* @param cardID
|
* @param yktywdh
|
* @param dataArr
|
* @return
|
* @throws Exception
|
*/
|
public ObjectResult<Boolean> delZCMX(String cardID,String yktywdh,JsonArray dataArr)throws Exception;
|
|
|
/**
|
* 根据卡号获取信息
|
*/
|
public ObjectResult<Map<String, Object>> getcInfo(String cardID,boolean needRecord);
|
|
/**
|
* 获取销售提单信息
|
* @param xstdNo
|
* @return
|
*/
|
public ObjectResult<Map<String, Object>> getxstdInfo(String xstdNo);
|
|
/**
|
* 业务单二次上磅控制
|
* @param dataArr
|
* @return
|
* @throws Exception
|
*/
|
public ObjectResult<Boolean> savewdControl(JsonArray dataArr)throws Exception;
|
|
/**
|
* 发送到明晟LED ABC区
|
* @param currPch
|
*/
|
public void sendToMsLed(String currPch);
|
|
/**
|
* 发送到义瑞 LED 区
|
* @param currPch
|
*/
|
public void sendToYrLed(String currPch);
|
|
public void sendToKjLed(String currPch);
|
}
|