refactor code
This commit is contained in:
@@ -7,7 +7,6 @@ import com.peanut.common.utils.PageUtils;
|
||||
import com.peanut.common.utils.R;
|
||||
import com.peanut.modules.book.entity.BuyOrderEntity;
|
||||
|
||||
import javax.xml.soap.Text;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@@ -21,40 +20,18 @@ import java.util.Map;
|
||||
public interface BuyOrderService extends IService<BuyOrderEntity> {
|
||||
|
||||
PageUtils queryPage(Map<String, Object> params) throws Exception;
|
||||
PageUtils queryPage1(Map<String, Object> params);
|
||||
|
||||
//更新订单状态
|
||||
void updateOrderStatus(Integer userId,String orderSn,String type);
|
||||
|
||||
// 发送快递
|
||||
public void sendFMS(Integer[] orderIds,String shipperCode,String shipperName);
|
||||
|
||||
// 取消快递
|
||||
public void cancelFMS(String orderSn, String shipperCode, String expNo);
|
||||
void updateOrderStatus(Integer userId, String orderSn, String type);
|
||||
|
||||
// 及时查询
|
||||
public JSONObject queryFMS(String shipperCode, String expNo);
|
||||
JSONObject queryFMS(String shipperCode, String expNo);
|
||||
|
||||
// 查询勾选的订单是否有可合并
|
||||
public List checkOrder(Integer[] orderIds);
|
||||
List checkOrder(Integer[] orderIds);
|
||||
|
||||
// 查询所有订单是否有可合并
|
||||
public Page checkOrder(Map<String, Object> params);
|
||||
|
||||
// 批量发货功能
|
||||
public void blendSendFMS(Integer[] orderDetailIds, String shipperCode, String shipperName);
|
||||
|
||||
|
||||
public int getProductGoodsType (Map<String, Object> param,Map<String, Object> productMap);
|
||||
|
||||
|
||||
public R randomOrderCode( BuyOrderEntity buyOrder);
|
||||
|
||||
PageUtils querySheet(Map<String, Object> params);
|
||||
|
||||
|
||||
PageUtils queryPages(Map<String, Object> params);
|
||||
|
||||
|
||||
}
|
||||
Page checkOrder(Map<String, Object> params);
|
||||
|
||||
void createSplitPackageOrder(String expressCompanyCode, Integer userAddressId, List<Integer> shopProductIdList);
|
||||
}
|
||||
Reference in New Issue
Block a user