예제 #1
0
 /**
  * 增加出库单 (non-Javadoc)
  *
  * @see
  *     com.wms3.bms.standard.business.outbound.IOutBoundBus#addOutBound(com.wms3.bms.standard.entity.outbound.OutboundInvoiceHeader)
  */
 public String addOutBound(OutboundInvoiceHeader invoice) throws Exception {
   // 获得单据ID
   BaseSeqDaoImpl seqDao = new BaseSeqDaoImpl(outBoundDAO.getEntityDAO());
   BaseSeq seqEn = seqDao.getSeqByType("CKD");
   String strID =
       SeqTool.getNewID(
           seqEn.getSeqType(),
           seqEn.getSeqPrefix(),
           seqEn.getIcodelength(),
           outBoundDAO.getEntityDAO());
   invoice.setOutstockid(strID);
   // 增加出库单
   outBoundDAO.addOutBound(invoice);
   return strID;
 }
예제 #2
0
 /**
  * 功能:增加出库单
  *
  * @author fanll 2015-3-8
  * @param invoice
  * @param outboundInvoiceDetails
  * @return
  * @throws Exception
  */
 public String addOutBoundls(
     OutboundInvoiceHeader outInvoice,
     List<OutboundInvoiceDetail> outboundInvoiceDetails,
     List<SaleFormDetail> SaleFormDetaills)
     throws Exception {
   return outBoundDAO.addOutBound(outInvoice, outboundInvoiceDetails, SaleFormDetaills);
 }
예제 #3
0
 /**
  * 修改出库单详细 (non-Javadoc)
  *
  * @see
  *     com.wms3.bms.standard.business.outbound.IOutBoundBus#updateOutBoundDetail(com.wms3.bms.standard.entity.outbound.OutboundInvoiceDetail,
  *     java.lang.String)
  */
 public String updateOutBoundDetail(OutboundInvoiceDetail outBoundDetail, String strInvoiceId)
     throws Exception {
   String strMsg = "操作成功!";
   // 同步  出库单号
   synchronized (strInvoiceId) {
     // 出库单
     OutboundInvoiceHeader invoice = getOutBoundById(strInvoiceId);
     if (invoice != null) {
       // 出库单的状态
       // 出库单详细的状态
       if (invoice.getOutstatus().equals("0") && outBoundDetail.getLinestatus().equals("0")) {
         outBoundDAO.updateOutBoundDetail(outBoundDetail);
       } else {
         strMsg =
             "出库单["
                 + strInvoiceId
                 + "]状态("
                 + invoice.getOutstatus()
                 + ")或出库单详细状态("
                 + outBoundDetail.getLinestatus()
                 + ")不为开单状态0!无法修改出库单详细!";
       }
     }
   }
   return strMsg;
 }
예제 #4
0
  /**
   * 删除出库单或出库单详细 (non-Javadoc)
   *
   * @see
   *     com.wms3.bms.standard.business.outbound.IOutBoundBus#deleteOutBoundInvoice(java.lang.String,
   *     java.lang.String, java.lang.String)
   */
  public String deleteOutBoundInvoice(
      String strOutBoundId, String strOutBoundDetailId, String strFlag) throws Exception {

    String strMsg = "操作成功!";
    // 同步  单据号
    synchronized (strOutBoundId) {
      OutboundInvoiceHeader invoice = getOutBoundById(strOutBoundId);
      if (invoice != null) {
        if (strFlag != null && strFlag.trim().equals("1")) { // 1:删除单据
          if (invoice.getOutstatus().equals("0")
              && !isFinishJobByOutIdAndCId(strOutBoundId)) { // 单据状态为开单状态;是否存在已完成作业
            outBoundDAO.deleteOutBound(strOutBoundId);
          } else {
            strMsg =
                "单据["
                    + strOutBoundId
                    + "]状态("
                    + invoice.getOutstatus()
                    + ")不为开单状态0,或者 存在已经完成的作业,不能删除出库单!";
          }
        } else if (strFlag != null && strFlag.trim().equals("2")) { // 2:删除单据详细
          // 出库单详细的状态
          OutboundInvoiceDetail outBoundDetail = getOutBoundDetailById(strOutBoundDetailId);
          if (outBoundDetail != null) {
            if (outBoundDetail.getLinestatus().equals("0")) { // 为开单状态时才能删除
              outBoundDAO.deleteOutBoundDetail(strOutBoundDetailId);
            } else {
              strMsg =
                  "出库单["
                      + strOutBoundId
                      + "]的出库详细["
                      + strOutBoundDetailId
                      + "]状态("
                      + outBoundDetail.getLinestatus()
                      + ")不为开单状态0,不能删除出库单详细!";
            }
          } else {
            strMsg = "出库单[" + strOutBoundId + "]的出库单详细[" + strOutBoundDetailId + "]不存在,无法做删除操作!";
          }
        }
      } else {
        strMsg = "出库单[" + strOutBoundId + "]不存在,无法做删除操作!";
      }
    }
    return strMsg;
  }
예제 #5
0
 /**
  * 修改出库单 (non-Javadoc)
  *
  * @see
  *     com.wms3.bms.standard.business.outbound.IOutBoundBus#updateOutBound(com.wms3.bms.standard.entity.outbound.OutboundInvoiceHeader)
  */
 public String updateOutBound(OutboundInvoiceHeader invoice) throws Exception {
   String strMsg = "操作成功!";
   // 同步  收货单号
   synchronized (invoice.getOutstockid()) {
     if (invoice.getOutstatus().equals("0")) {
       outBoundDAO.updateOutBound(invoice);
     } else {
       strMsg =
           "出库单[" + invoice.getOutstockid() + "]状态(" + invoice.getOutstatus() + ")不为开单状态1!无法修改!";
     }
   }
   return strMsg;
 }
예제 #6
0
 /**
  * 功能:根据出库单ID判断是否有已完成作业(删除出库单据使用)
  *
  * @param id 出库单id
  * @return
  * @throws Exception
  */
 public boolean isFinishJobByOutIdAndCId(String id) throws Exception {
   List<InoutJob> ls = null;
   try {
     ls = outBoundDAO.getFinishJobByIdCid(id);
     if (ls != null && ls.size() > 0) {
       return true;
     }
   } catch (Exception e) {
     e.printStackTrace();
     throw new Exception(
         "OutBoundBusImpl.isFinishJobByOutIdAndCId:根据出库单ID判断是否有已完成作业出错:" + e.getMessage());
   }
   return false;
 }
예제 #7
0
 /**
  * 增加出库单详细 (non-Javadoc)
  *
  * @see
  *     com.wms3.bms.standard.business.outbound.IOutBoundBus#addOutBoundDetail(com.wms3.bms.standard.entity.outbound.OutboundInvoiceDetail,
  *     java.lang.String)
  */
 public String addOutBoundDetail(OutboundInvoiceDetail outBoundDetail, String strInvoiceId)
     throws Exception {
   String strMsg = "操作成功!";
   // 同步  出库单号
   synchronized (strInvoiceId) {
     // 出库单
     OutboundInvoiceHeader invoice = getOutBoundById(strInvoiceId);
     if (invoice != null) {
       if (invoice.getOutstatus().equals("0")) {
         outBoundDAO.addOutBoundDetail(outBoundDetail);
       } else {
         strMsg = "出库单[" + strInvoiceId + "]状态(" + invoice.getOutstatus() + ")不为开单状态0!无法新增出库单详细!";
       }
     }
   }
   return strMsg;
 }
예제 #8
0
 /**
  * 功能:取消出库单
  *
  * @author fanll 2015-3-8
  * @param outInvoice
  * @param SaleFormDetaills
  * @return
  * @throws Exception
  */
 public String CancelInvoice(
     OutboundInvoiceHeader outInvoice, List<SaleFormDetail> SaleFormDetaills) throws Exception {
   return outBoundDAO.CancelInvoice(outInvoice, SaleFormDetaills);
 }
예제 #9
0
  /**
   * 功能:暂存直接出库时,修改的内容
   *
   * @param job
   * @param jobDetail
   * @param inventory
   * @throws Exception
   */
  public String updateInventoryAndJob(String jobID, String jobDetailID, String inventoryID)
      throws Exception {

    return outBoundDAO.updateInventoryAndJob(jobID, jobDetailID, inventoryID);
  }
예제 #10
0
  /**
   * 功能:作废出库单
   *
   * @param ids 出库单ID
   * @return
   * @throws Exception
   */
  public String cancelInvoices(String ids, String strUserCode) throws Exception {

    String strBackMsg = "Y";
    try {

      OutboundInvoiceHeader outboundinvoice = null;
      OutboundInvoiceDetail detail = null;
      List<OutboundInvoiceDetail> lsDetail;

      String[] outstockid = ids.split(",");
      for (int i = 0; i < outstockid.length; i++) {

        outboundinvoice = getOutBoundById(outstockid[i]); // 出库单据
        lsDetail = getOutBoundDetailsById(outstockid[i]); // 出库单据详细
        boolean statusflg = false;

        // 判断状态 0:开单;2-分配  7:发货确认 8:作废
        if (outboundinvoice.getOutstatus().equals("0")) {
          statusflg = false;

        } else if (outboundinvoice.getOutstatus().equals("2")) // 分配后可不可以作废,分配后作业都已作废
        {
          // 分配状态, 作业都已作废,是可以作废单据的。
          int iCount = jobDao.noCancelJob(outboundinvoice.getOutstockid(), null);
          if (iCount > 0) { // 不能作废
            statusflg = true;
          } else { // 可以作废
            statusflg = false;
          }
        } else {
          statusflg = true;
        }

        if (statusflg) {

          if (strBackMsg.equals("Y")) {
            strBackMsg = "不能作废非开单状态的单据!";

          } else {
            strBackMsg += "\r不能作废非开单状态的单据!";
          }
        } else {

          if (outboundinvoice.getSaleno() != null || outboundinvoice.getSaleno() != "") {
            List<SaleFormDetail> SaleFormDetaills = new ArrayList<SaleFormDetail>();
            List<OutboundInvoiceDetail> lsinvoiceD =
                getOutBoundDetailsById(outboundinvoice.getOutstockid());
            OutboundInvoiceDetail invoiceD = null;
            IOutboundSoBus soBus = new OutboundSoBusImpl(outBoundDAO.getEntityDAO());
            if (lsinvoiceD != null && lsinvoiceD.size() > 0) {
              for (int j = 0; j < lsinvoiceD.size(); j++) {
                invoiceD = lsinvoiceD.get(j);
                SaleFormDetail saD = soBus.getSoDeByDId(invoiceD.getSodetailid());
                saD.setM_iOutNum(saD.getM_iOutNum() - invoiceD.getInvoicenum());
                SaleFormDetaills.add(saD);
              }
            }
            outboundinvoice.setOutstatus("8");
            outBoundDAO.CancelInvoice(outboundinvoice, SaleFormDetaills);
          } else {
            outboundinvoice.setOutstatus("8");
            outBoundDAO.updateOutBound(outboundinvoice);
          }

          Logger.info("用户【" + strUserCode + "】在单据管理模块里作废了出库单据:" + outstockid[i]);
        }
      }
    } catch (Exception e) {

      e.printStackTrace();
      throw new Exception("作废出库单据时候出错:" + e.getMessage());
    }

    return strBackMsg;
  }
예제 #11
0
 /**
  * 出库分配->统计预配的数量 (non-Javadoc)
  *
  * @see
  *     com.wms3.bms.standard.business.outbound.IOutBoundBus#getGroupSoftallocationNum(java.lang.String,
  *     java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String,
  *     java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String,
  *     java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String,
  *     java.lang.String)
  */
 public Object[] getGroupSoftallocationNum(
     String warehouseid,
     String whAreaId,
     String ownerid,
     String productid,
     String packid,
     String lotatt1,
     String lotatt2,
     String lotatt3,
     String lotatt4,
     String lotatt5,
     String lotatt6,
     String lotatt7,
     String lotatt8,
     String lotatt9,
     String lotatt10,
     String lotatt11,
     String lotatt12)
     throws Exception {
   Object[] obj = null;
   StringBuilder strBud = new StringBuilder();
   strBud
       .append("select sum(sto.assignnum), ")
       .append("sum(sto.weight), ")
       .append("sum(sto.netweight), ")
       .append("sum(sto.volume) ")
       .append(" from OutboundSoftallocation sto where sto.status='0' ");
   // 仓库ID
   if (warehouseid != null && warehouseid.trim().length() > 0) {
     strBud.append(" and sto.warehouseid='").append(warehouseid).append("'");
   }
   // 库区ID
   if (whAreaId != null && whAreaId.trim().length() > 0) {
     strBud.append(" and sto.whAreaId='").append(whAreaId).append("'");
   }
   // 货主
   if (ownerid != null && ownerid.trim().length() > 0) {
     strBud.append(" and sto.ownerId='").append(ownerid).append("'");
   }
   // 品名ID
   if (productid != null && productid.trim().length() > 0) {
     strBud.append(" and sto.productid='").append(productid).append("'");
   }
   // 包装
   if (packid != null && packid.trim().length() > 0) {
     strBud.append(" and sto.packid='").append(packid).append("'");
   }
   // 批次属性1
   if (lotatt1 != null && lotatt1.trim().length() > 0) {
     strBud.append(" and sto.lotatt1='").append(lotatt1).append("'");
   }
   // 批次属性2
   if (lotatt2 != null && lotatt2.trim().length() > 0) {
     strBud.append(" and sto.lotatt2='").append(lotatt2).append("'");
   }
   // 批次属性3
   if (lotatt3 != null && lotatt3.trim().length() > 0) {
     strBud.append(" and sto.lotatt3='").append(lotatt3).append("'");
   }
   // 批次属性4
   if (lotatt4 != null && lotatt4.trim().length() > 0) {
     strBud.append(" and sto.lotatt4='").append(lotatt4).append("'");
   }
   // 批次属性5
   if (lotatt5 != null && lotatt5.trim().length() > 0) {
     strBud.append(" and sto.lotatt5='").append(lotatt5).append("'");
   }
   // 批次属性6
   if (lotatt6 != null && lotatt6.trim().length() > 0) {
     strBud.append(" and sto.lotatt6='").append(lotatt6).append("'");
   }
   // 批次属性7
   if (lotatt7 != null && lotatt7.trim().length() > 0) {
     strBud.append(" and sto.lotatt7='").append(lotatt7).append("'");
   }
   // 批次属性8
   if (lotatt8 != null && lotatt8.trim().length() > 0) {
     strBud.append(" and sto.lotatt8='").append(lotatt8).append("'");
   }
   // 批次属性9
   if (lotatt9 != null && lotatt9.trim().length() > 0) {
     strBud.append(" and sto.lotatt9='").append(lotatt9).append("'");
   }
   // 批次属性10
   if (lotatt10 != null && lotatt10.trim().length() > 0) {
     strBud.append(" and sto.lotatt10='").append(lotatt10).append("'");
   }
   // 批次属性11
   if (lotatt11 != null && lotatt11.trim().length() > 0) {
     strBud.append(" and sto.lotatt11='").append(lotatt11).append("'");
   }
   // 批次属性12
   if (lotatt12 != null && lotatt12.trim().length() > 0) {
     strBud.append(" and sto.lotatt12='").append(lotatt12).append("'");
   }
   List ls = outBoundDAO.querySQL(strBud.toString());
   if (ls != null && ls.size() > 0) {
     obj = (Object[]) ls.get(0);
   }
   return obj;
 }
예제 #12
0
 /**
  * 根据仓库ID获得需要发货确认的B客户的出库单 (non-Javadoc)
  *
  * @see com.wms3.bms.standard.business.outbound.IOutBoundBus#getSendOutInvoice(java.lang.String,
  *     java.lang.String)
  */
 public List<OutboundInvoiceHeader> getSendOutInvoice(String warehouseid, String aoutid)
     throws Exception {
   return outBoundDAO.getSendOutInvoice(warehouseid, aoutid);
 }
예제 #13
0
 /**
  * 根据出库单ID获得出库单详细 (non-Javadoc)
  *
  * @see
  *     com.wms3.bms.standard.business.outbound.IOutBoundBus#getOutBoundDetailsById(java.lang.String)
  */
 public List<OutboundInvoiceDetail> getOutBoundDetailsById(String strInvoiceId) throws Exception {
   return outBoundDAO.getOutBoundDetailsById(strInvoiceId);
 }
예제 #14
0
 /**
  * 功能:获取没有完全分配的出库产品信息
  *
  * @author yao 2015-3-11
  * @return
  * @throws Exception
  */
 public List getOutBoundProudctInfo() throws Exception {
   return outBoundDAO.getOutBoundProudctInfo();
 }
예제 #15
0
 /**
  * 根据出库单详细ID获得出库单详细 (non-Javadoc)
  *
  * @see
  *     com.wms3.bms.standard.business.outbound.IOutBoundBus#getOutBoundDetailById(java.lang.String)
  */
 public OutboundInvoiceDetail getOutBoundDetailById(String strInvoiceDetailId) throws Exception {
   return outBoundDAO.getOutBoundDetailById(strInvoiceDetailId);
 }
예제 #16
0
 /**
  * 根据出库单ID获得出库单 (non-Javadoc)
  *
  * @see com.wms3.bms.standard.business.outbound.IOutBoundBus#getOutBoundById(java.lang.String)
  */
 public OutboundInvoiceHeader getOutBoundById(String strOutBoundId) throws Exception {
   return outBoundDAO.getOutBoundById(strOutBoundId);
 }