コード例 #1
0
 protected void DisplayOrder_Click(object sender, EventArgs e)
 {
     MessageUserControl.TryRun(() =>
     {
         var controller     = new ReceivingController();
         OrderPanel.Enabled = true;
         OrderPanel.Visible = true;
         var grvRow         = (GridViewRow)((LinkButton)sender).NamingContainer;
         // Populate vendor information labels
         PONumLabel.Text  = grvRow.Cells[0].Text;
         Vendor.Text      = grvRow.Cells[2].Text;
         VendorPhone.Text = grvRow.Cells[3].Text;
         // Populate GridView through a dataSource
         var orderDetails = controller.GetPurchaseOrderDetails(Convert.ToInt32((grvRow.FindControl("POid") as HiddenField).Value));
         PurchaseOrderDetailsGridView.DataSource = orderDetails;
         PurchaseOrderDetailsGridView.DataBind();
     }, "Success", "Order found!");
 }
コード例 #2
0
ファイル: Receiving.aspx.cs プロジェクト: SharkSix/ETools
    protected void ShowPurchaseOrders_SelectedIndexChanging(object sender, GridViewSelectEventArgs e)
    {
        OrderInfo.Visible     = true;
        OrderControls.Visible = true;
        int         index       = e.NewSelectedIndex;
        GridViewRow agrow       = ShowPurchaseOrders.Rows[index];
        int         orderNumber = int.Parse(agrow.Cells[0].Text);

        PONum.Text  = agrow.Cells[0].Text;
        Vendor.Text = agrow.Cells[2].Text;
        Phone.Text  = agrow.Cells[3].Text;
        MessageUserControl.TryRun(() =>
        {
            ReceivingController sysmgr = new ReceivingController();
            List <ViewPurchaseOrderItems> orderInfo = sysmgr.GetPurchaseOrderDetails(orderNumber);
            ShowOrderDetails.DataSource             = orderInfo;
            ShowOrderDetails.DataBind();
        });
    }
コード例 #3
0
        protected void ReceiveOrder_Click(object sender, EventArgs e)
        {
            string sccssDetail = "Order Received.";

            MessageUserControl.TryRun(() =>
            {
                try
                {
                    PurchaseOrderProcessed order = new PurchaseOrderProcessed();
                    order.POid = Convert.ToInt32((PurchaseOrderDetailsGridView.Rows[0].FindControl("POid") as HiddenField).Value);
                    List <ReceivedPODetail> detailList = new List <ReceivedPODetail>();
                    foreach (GridViewRow row in PurchaseOrderDetailsGridView.Rows)
                    {
                        // Unpack GridViewRow:
                        var receivingAmount = Convert.ToInt32((row.Cells[4].Controls[1] as TextBox).Text);
                        var qtyOutstanding  = Convert.ToInt32((row.Cells[3].Controls[1] as Label).Text);
                        if (receivingAmount > qtyOutstanding)
                        {
                            throw new Exception("Quantity receiving cannot be be greater then quantity outstanding.");
                        }
                        var returnAmount = Convert.ToInt32((row.Cells[5].Controls[1] as TextBox).Text);
                        var returnReason = (row.Cells[6].Controls[1] as TextBox).Text;
                        if (returnAmount > 0 && returnReason == "")
                        {
                            throw new Exception("Must provide reason for each item returned.");
                        }
                        var partID     = Convert.ToInt32((row.Cells[0].Controls[1] as Label).Text);
                        var poDetailID = Convert.ToInt32((row.FindControl("PODetailID") as HiddenField).Value);
                        var POid       = Convert.ToInt32((row.FindControl("POid") as HiddenField).Value);

                        if (receivingAmount > 0 || returnAmount > 0)
                        {
                            // collect the data to be sent to BLL
                            ReceivedPODetail data = new ReceivedPODetail
                            {
                                POid         = POid,
                                PODetailID   = poDetailID,
                                PartID       = partID,
                                QtyReceiving = receivingAmount,
                                QtyReturning = returnAmount,
                                ReturnReason = returnReason
                            };
                            detailList.Add(data);
                        }
                    }
                    // Check what button sent the request and check for item count for processing
                    var button = ((LinkButton)sender).ID;
                    if (detailList.Count == 0 && button == "ReceiveOrder" && UnorderedCart.Items.Count == 0)
                    {
                        throw new Exception("No items received in the order.");
                    }
                    order.receivedDetails = detailList;
                    var controller        = new ReceivingController();
                    bool closed           = controller.ReceiveOrder(order);
                    // Refresh GridView and ListView update after receive.
                    var orderDetails = controller.GetPurchaseOrderDetails(order.POid);
                    PurchaseOrderDetailsGridView.DataSource = orderDetails;
                    PurchaseOrderDetailsGridView.DataBind();
                    UnorderedCart.DataBind();
                    // If order is closed refresh hide Order Details and refresh Order Panel.
                    if (closed)
                    {
                        OrderPanel.Visible = false;
                        OrderPanel.Enabled = false;
                        OutstandingOrderGridView.DataBind();
                        sccssDetail = "Order Fulfilled and closed.";
                    }
                }
                catch (FormatException)
                {
                    throw new Exception("Returning and Receiving must be digits. If non returned / received enter 0.");
                }
            }, "Success", sccssDetail);
        }