Beispiel #1
0
        public dataProdukForm(int moduleID, penerimaanBarangForm thisParentForm)
        {
            InitializeComponent();

            originModuleID = moduleID;
            parentPenerimaanBarangForm = thisParentForm;

            // accessed from other form other than Master -> Data Produk
            // it means that this form is only displayed for browsing / searching purpose only
            newButton.Visible = false;
        }
 private void newButton_Click(object sender, EventArgs e)
 {
     penerimaanBarangForm displayedForm = new penerimaanBarangForm();
     displayedForm.ShowDialog(this);
 }
Beispiel #3
0
        private void barcodeTextBox_KeyPress(object sender, KeyPressEventArgs e)
        {
            string productID = "";
            if (e.KeyChar == 13)
            { 
                productNameTextBox.Text = getProductName(barcodeTextBox.Text);
                productID = getProductID(barcodeTextBox.Text);

                if (productNameTextBox.Text.Length > 0)
                {
                    switch(originModuleID)
                    {
                        case globalConstants.CASHIER_MODULE:
                            originCashierForm = (cashierForm)parentForm;
                            originCashierForm.addNewRowFromBarcode(productID, productNameTextBox.Text);
                            break;

                        case globalConstants.PENERIMAAN_BARANG:
                            originPenerimaanForm = (penerimaanBarangForm)parentForm;
                            originPenerimaanForm.addNewRowFromBarcode(productID, productNameTextBox.Text);
                            break;

                        case globalConstants.NEW_PURCHASE_ORDER:
                            originPOForm = (purchaseOrderDetailForm)parentForm;
                            originPOForm.addNewRowFromBarcode(productID, productNameTextBox.Text);
                            break;

                        case globalConstants.MUTASI_BARANG:
                            originMutasiForm = (dataMutasiBarangDetailForm)parentForm;
                            originMutasiForm.addNewRowFromBarcode(productID, productNameTextBox.Text);
                            break;

                        case globalConstants.NEW_REQUEST_ORDER:
                            originRequestForm = (permintaanProdukForm)parentForm;
                            originRequestForm.addNewRowFromBarcode(productID, productNameTextBox.Text);
                            break;

                        case globalConstants.RETUR_PENJUALAN:
                            originReturJualForm = (dataReturPenjualanForm)parentForm;
                            originReturJualForm.addNewRowFromBarcode(productID, productNameTextBox.Text);
                            break;

                        case globalConstants.RETUR_PEMBELIAN:
                            originReturBeliForm = (dataReturPermintaanForm)parentForm;
                            originReturBeliForm.addNewRowFromBarcode(productID, productNameTextBox.Text);
                            break;

                    }
                }
                barcodeTextBox.SelectAll();
            }
            else if (e.KeyChar == 27)
            {
                this.Close();
            }
        }