public DataSet PhysicalStockPrinting(decimal decPhysicalStockMasterId, decimal decCompanyId)
        {
            DataSet dSt = new DataSet();

            try
            {
                dSt = spPhysicalStockMaster.PhysicalStockPrinting(decPhysicalStockMasterId, decCompanyId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("PS4:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(dSt);
        }
Exemple #2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="DecBrandId"></param>
        /// <param name="decid"></param>
        /// <returns></returns>
        public DataSet PhysicalStockPrinting(decimal DecBrandId, decimal decid)
        {
            DataSet dsPhysicalStock = new DataSet();

            try
            {
                SPPhysicalStockMaster.PhysicalStockPrinting(DecBrandId, decid);
            }
            catch (Exception ex)
            {
                MessageBox.Show("PS1:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            return(dsPhysicalStock);
        }