private void labelMaterielInOutCount_Click(object sender, EventArgs e)
        {
            FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(
                FormDisplayCountInfoFromSQL.CountType.MaterielInOutCount);

            fpic.ShowDialog();
        }
Example #2
0
 private void historyPrice_Click(object sender, EventArgs e)
 {
     if (m_isQueryMaterielPurchasePrice)
     {
         if (m_isQueryHistoryPrice)
         {
             FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(FormDisplayCountInfoFromSQL.CountType.PurchaseHistoryPrice, m_currentDataGridViedRecordPkey);
             fpic.ShowDialog();
         }
         else
         {
             FormMaterielPriceSheet fsps = new FormMaterielPriceSheet(m_currentDataGridViedRecordPkey);
             fsps.ShowDialog();
         }
     }
     else
     {
         if (m_isQueryHistoryPrice)
         {
             //FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(FormDisplayCountInfoFromSQL.CountType.PurchaseHistoryPrice, m_currentDataGridViedRecordPkey);
             //fpic.ShowDialog();
         }
         else
         {
             FormMaterielPriceSheet fsps = new FormMaterielPriceSheet(m_currentDataGridViedRecordPkey, false);
             fsps.ShowDialog();
         }
     }
 }
Example #3
0
        // 产品入库汇总表
        private void labelMaterielCount_Click(object sender, EventArgs e)
        {
            FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(
                FormDisplayCountInfoFromSQL.CountType.StorageManagerProduceIn);

            fpic.ShowDialog();
        }
Example #4
0
        private void labelSaleCountByCustom_Click(object sender, EventArgs e)
        {
            FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(FormDisplayCountInfoFromSQL.CountType.SaleCustomer);

            fpic.ShowDialog();
        }
Example #5
0
        private void labelSaleCountByProducts_Click(object sender, EventArgs e)
        {
            FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(FormDisplayCountInfoFromSQL.CountType.SaleMateriel);

            fpic.ShowDialog();
        }
        // 采购成本汇总
        private void labelPurchaseCostCount_Click(object sender, EventArgs e)
        {
            FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(FormDisplayCountInfoFromSQL.CountType.PurchaseMateriel);

            fpic.ShowDialog();
        }
        private void labelAmountCountBySupplier_Click(object sender, EventArgs e)
        {
            FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(FormDisplayCountInfoFromSQL.CountType.PurchaseSupplier);

            fpic.ShowDialog();
        }
Example #8
0
        // 生产领料汇总表
        private void labelMaterielDetails_Click(object sender, EventArgs e)
        {
            FormDisplayCountInfoFromSQL fpic = new FormDisplayCountInfoFromSQL(FormDisplayCountInfoFromSQL.CountType.StorageMaterielOut);

            fpic.ShowDialog();
        }