• 大小: 16.85MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-04
  • 语言: 其他
  • 标签: net  

资源简介

1、渠道销售商在把药品从厂商销售到医院时,需要管理大量的数据,这些通常包括药品从厂商采购数据、药品销售到商业公司的数据,以及最后实际在医院发生业务的数据,这些数据非常繁杂,尤其对于业务量比较大的渠道销售商来说,采用人工管理经常会导致数据的不及时性、不正确性以及统计过程繁琐性。通过有效地数据库管理系统方便快捷地解决这些问题已经显得非常迫切。 2、通常,渠道销售商销售药品的流程如图1所示。数据库管理系统将实现整个业务流程的数字化,通过强大的计算机管理系统来解决人工管理时所出现的问题。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.SqlClient;
namespace BLL
{
    public class Business
    {
        public string ErrorMessage = ““;//错误信息
        //添加
        public int Add(
        out int ID
         int DrugsID
         int HospitalsID
         int BoxNumber
         double OutPrice
         string OutTime
         int SubShopsID
         string Maker
         string ExpireDate
         string Remarks
        )
        {
            int flag = 0;
            try
            {
                DAL.ExecuteProcedure exec = new DAL.ExecuteProcedure();
                SqlParameter[] parameters = {
new SqlParameter(“@ID“ SqlDbType.Int32)
new SqlParameter(“@DrugsID“ DrugsID)
new SqlParameter(“@HospitalsID“ HospitalsID)
new SqlParameter(“@BoxNumber“ BoxNumber)
new SqlParameter(“@OutPrice“ OutPrice)
new SqlParameter(“@OutTime“ OutTime.Trim())
new SqlParameter(“@SubShopsID“ SubShopsID)
new SqlParameter(“@Maker“ Maker.Trim())
new SqlParameter(“@ExpireDate“ ExpireDate.Trim())
new SqlParameter(“@Remarks“ Remarks.Trim())
 new SqlParameter(“@Flag“SqlDbType.Int32)
};
                parameters[0].Direction = ParameterDirection.Output;
                parameters[10].Direction = ParameterDirection.ReturnValue;
                flag = exec.run(“Pr_Business_Add“ parameters);
                if (flag == 1)
                {
                    if (Convert.ToInt32(parameters[10].Value) == 10)
                    {
                        ID = Convert.ToInt32(parameters[0].Value);
                    }
                    else
                    {
                        ID = 0;
                        flag = 0;
                        this.ErrorMessage = “添加失败,已存在同样的数据!“;
                    }
                }
                else
                {
                    ID = 0;
                    this.ErrorMessage = exec.ErrorMessage;
                }
            }
            catch (Exception e)
            {
                ID = 0;
                this.ErrorMessage = e.Message.ToString();
            }
            return flag;
        }
        //更新
        public int Update(
        int ID
         int DrugsID
         int HospitalsID
         int BoxNumber
         double OutPrice
         string OutTime
         int SubShopsID
         string Maker
         string ExpireDate
         string Remarks
        )
        {
            int flag = 0;
            try
            {
                DAL.ExecuteProcedure exec = new DAL.ExecuteProcedure();
                SqlParameter[] parameters = {
new SqlParameter(“@ID“ ID)
new SqlParameter(“@DrugsID“ DrugsID)
new SqlParameter(“@HospitalsID“ HospitalsID)
new SqlParameter(“@BoxNumber“ BoxNumber)
new SqlParameter(“@OutPrice“ OutPrice)
new SqlParameter(“@Ou

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     111616  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\bin\Debug\BLL.dll

     文件     351744  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\bin\Debug\BLL.pdb

     文件     110592  2012-05-30 17:11  医药ERP管理系统源码(NET)\BLL\bin\Debug\CarlosAg.ExcelxmlWriter.dll

     文件       8192  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\bin\Debug\DAL.dll

     文件      30208  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\bin\Debug\DAL.pdb

     文件      72192  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\bin\Debug\Tools.dll

     文件     204288  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\bin\Debug\Tools.pdb

     文件       4440  2014-08-21 22:15  医药ERP管理系统源码(NET)\BLL\BLL.csproj

     文件      14590  2014-09-16 21:12  医药ERP管理系统源码(NET)\BLL\Business.cs

     文件      14257  2014-11-15 09:55  医药ERP管理系统源码(NET)\BLL\BusinessDelevery.cs

     文件       7039  2014-08-20 21:38  医药ERP管理系统源码(NET)\BLL\BusinessStaffs.cs

     文件       1307  2013-07-30 00:28  医药ERP管理系统源码(NET)\BLL\ConvertData.cs

     文件        868  2013-09-21 10:23  医药ERP管理系统源码(NET)\BLL\DatabaseOperation.cs

     文件      12011  2014-03-27 23:50  医药ERP管理系统源码(NET)\BLL\Departments.cs

     文件      14895  2014-11-15 09:53  医药ERP管理系统源码(NET)\BLL\Drugs.cs

     文件       8399  2013-09-26 23:12  医药ERP管理系统源码(NET)\BLL\Folders.cs

     文件       5874  2014-05-09 18:31  医药ERP管理系统源码(NET)\BLL\Functions.cs

     文件       8381  2014-07-15 19:31  医药ERP管理系统源码(NET)\BLL\Hospitals.cs

     文件       8960  2014-08-05 14:38  医药ERP管理系统源码(NET)\BLL\InStoreCollections.cs

     文件       8622  2014-08-05 14:36  医药ERP管理系统源码(NET)\BLL\InStoreInvoice.cs

     文件      11072  2014-08-05 14:41  医药ERP管理系统源码(NET)\BLL\InStoreLists.cs

     文件      16880  2014-09-16 21:18  医药ERP管理系统源码(NET)\BLL\InStores.cs

     文件        383  2013-07-07 16:30  医药ERP管理系统源码(NET)\BLL\Interface_BLL.cs

     文件       2177  2013-08-02 00:10  医药ERP管理系统源码(NET)\BLL\LogDB.cs

     文件       2649  2013-09-26 23:14  医药ERP管理系统源码(NET)\BLL\MailAttachments.cs

     文件      19018  2013-08-26 00:24  医药ERP管理系统源码(NET)\BLL\Mails.cs

     文件      13661  2014-03-24 21:30  医药ERP管理系统源码(NET)\BLL\Modules.cs

     文件       1688  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\obj\Debug\BLL.csproj.FileListAbsolute.txt

     文件      27331  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\obj\Debug\BLL.csprojResolveAssemblyReference.cache

     文件     111616  2015-08-12 10:42  医药ERP管理系统源码(NET)\BLL\obj\Debug\BLL.dll

............此处省略1623个文件信息

评论

共有 条评论