/**
   * 「更新」ボタン押下時
   *
   * @param mapping
   * @param form
   * @param request
   * @param response
   * @return
   * @throws Exception
   */
  @SuppressWarnings("unchecked")
  public ActionForward update(
      ActionMapping mapping,
      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response)
      throws Exception {
    QuotationListForm listForm = (QuotationListForm) form;
    String voucherNo = listForm.getSel()[0];

    // セッションの伝票BeanMapより選択した伝票Beanを取得。セッションに格納
    Map<String, VoucherBean> voucherBeanMap =
        (Map<String, VoucherBean>)
            request.getSession(false).getAttribute(BizCommonConstants.BEAN_NAME_VOUCHER_BEAN_MAP);
    VoucherBean voucherBean = (VoucherBean) SerializationUtils.clone(voucherBeanMap.get(voucherNo));
    request.getSession(false).setAttribute(BizCommonConstants.BEAN_NAME_VOUCHER_BEAN, voucherBean);

    // 伝票Beanを元に見積書FormBeanを作成。セッションに格納
    QuotationForm quotationForm = new QuotationForm();
    QuotationBL.reflectVoucherBeanToQuotationForm(quotationForm, voucherBean);
    request
        .getSession(false)
        .setAttribute(BizCommonConstants.FORM_BEAN_NAME_QUOTATION_FORM, quotationForm);

    // 不要となるセッション情報を破棄
    request
        .getSession(false)
        .removeAttribute(BizCommonConstants.FORM_BEAN_NAME_QUOTATION_LIST_FORM);

    return mapping.findForward(BizCommonConstants.FWD_UPDATE);
  }
  /**
   * 「削除」ボタン押下時
   *
   * @param mapping
   * @param form
   * @param request
   * @param response
   * @return
   * @throws Exception
   */
  public ActionForward delete(
      ActionMapping mapping,
      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response)
      throws Exception {

    QuotationListForm listForm = (QuotationListForm) form;
    String[] voucherNo = listForm.getSel();

    // 削除処理
    QuotationBL.delete(voucherNo);

    // セッションより、消費税率を取得
    BigDecimal taxValue =
        ((BasicBean)
                SystemSessionManager.getValue(
                    request.getSession(false), SystemSessionKey.BASIC_INFO))
            .getTaxVal();

    // 伝票BeanMap再取得後、セッションに格納する
    request
        .getSession(false)
        .setAttribute(
            BizCommonConstants.BEAN_NAME_VOUCHER_BEAN_MAP, QuotationBL.getVoucherBeanMap(taxValue));

    return mapping.findForward(BizCommonConstants.FWD_DELETE);
  }