Ejemplo n.º 1
0
    protected void btnSavePaymentInfo_Click(object sender, EventArgs e)
    {
        DateTime PaymentDate   = DateTime.MinValue;
        decimal  PaymentAmount = decimal.Zero;

        if (!string.IsNullOrEmpty(ucPaymentDate.SelectedDate))
        {
            DateTime.TryParse(ucPaymentDate.SelectedDate, out PaymentDate);
        }
        if (PaymentDate == DateTime.MinValue)
        {
            PageUtility.ShowModelDlg(this, "支付日期填写不正确!");
            return;
        }
        try {
            SalesReimburseBLL.UpdateFormReimburseForRealPaymentInfo(int.Parse(this.ViewState["ObjectId"].ToString()), PaymentDate);
        } catch (Exception) {
            PageUtility.ShowModelDlg(this, e.ToString());
            throw;
        }
        if (this.Request["Source"] != null)
        {
            this.Response.Redirect(this.Request["Source"].ToString());
        }
        else
        {
            this.Response.Redirect("~/Home.aspx");
        }
    }
Ejemplo n.º 2
0
 protected void btnDeliveryComplete_Click(object sender, EventArgs e)
 {
     SalesReimburseBLL.DeliveryComplete((int)this.ViewState["ObjectId"], ((AuthorizationDS.StuffUserRow)Session["StuffUser"]).StuffUserId);
     if (this.Request["Source"] != null)
     {
         this.Response.Redirect(this.Request["Source"].ToString());
     }
     else
     {
         this.Response.Redirect("~/Home.aspx");
     }
 }
Ejemplo n.º 3
0
    protected void odsReimburseDetails_ObjectCreated(object sender, ObjectDataSourceEventArgs e)
    {
        SalesReimburseBLL bll = (SalesReimburseBLL)e.ObjectInstance;

        bll.FormDataSet = this.InnerDS;
    }