• 大小: 5.80M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: MySql  asp.net  asp  sql  系统  

资源简介

图书销售管理系统[MySql]V1.0源码

主要包括以下方面的功能:

1、进货--根据某种书籍的库存量及销售情况确定进货数量,根据供应商报价选择供应商。
输出一份进货单并自动修改库存量,把本次进货的信息添加到进货库中。

2、退货--顾客把已买的书籍退还给书店。输出一份退货单并自动修改库存量,把本次退货的信息添加到退货库中。

3、统计--根据销售情况输出统计的报表。一般内容为每月的销售总额、销售总量及排行榜等信息。

4、销售--输入顾客要买书籍的信息,自动显示此书的库存量,如果可以销售,打印销售单并修改库存,同时把此次销售的有关信息添加到日销售库中。

5、查询--允许用户设置条件进行进货、退货、统计、销售和库存书籍的信息查询。

6、系统维护--如数据安全管理(含备份与恢复)、操作员管理、权限设置等。


执行MYSQL目录下的脚本文件来生成数据库。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;

namespace BookSellManagementSystem
{
   public class Cmd
    {
        /// 执行Cmd命令
        /// 
        /// 要启动的进程的目录
        /// 要执行的命令
        public static void StartCmd(String workingDirectory String command)
        {
            Process p = new Process();
            p.StartInfo.FileName = “cmd.exe“;
            p.StartInfo.WorkingDirectory = workingDirectory;
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardError = true;
            p.StartInfo.CreateNoWindow = true;
            p.Start();
          

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

     文件        860  2010-12-30 09:41  app.config

     文件      14665  2011-03-18 14:41  BookSellManagementSystem.csproj

     文件        497  2010-12-30 09:41  BookSellManagementSystem.csproj.user

     文件        889  2011-07-01 17:31  BookSellManagementSystem.sln

    ..A..H.     20480  2011-07-01 17:31  BookSellManagementSystem.suo

     文件        951  2010-12-31 11:31  Cmd.cs

     文件       3753  2011-07-01 17:31  Form1.cs

     文件       9585  2010-12-29 00:38  Form1.Designer.cs

     文件     356204  2010-12-29 00:38  Form1.resx

     文件       3596  2011-07-01 17:32  frmAuthoritySet.cs

     文件       8981  2010-12-31 14:26  frmAuthoritySet.Designer.cs

     文件     155637  2010-12-31 14:26  frmAuthoritySet.resx

     文件       4928  2011-07-01 17:32  frmBackupAndRestore.cs

     文件      11554  2010-12-31 12:07  frmBackupAndRestore.Designer.cs

     文件     156220  2010-12-31 12:07  frmBackupAndRestore.resx

     文件       3306  2011-03-23 22:27  frmCacelPurchaseInfoQuery.cs

     文件       8329  2011-03-23 22:27  frmCacelPurchaseInfoQuery.Designer.cs

     文件     155637  2011-03-23 22:27  frmCacelPurchaseInfoQuery.resx

     文件       5836  2010-12-30 10:04  frmCancelPurchase.cs

     文件      14957  2010-12-29 13:14  frmCancelPurchase.Designer.cs

     文件     155637  2010-12-29 13:14  frmCancelPurchase.resx

     文件       5589  2010-12-31 14:34  frmChangeStock.cs

     文件      11053  2010-12-31 14:35  frmChangeStock.Designer.cs

     文件     155637  2010-12-31 14:32  frmChangeStock.resx

     文件        669  2010-12-30 10:04  frmDevelopTeamIntroduce.cs

     文件      26819  2010-12-29 13:18  frmDevelopTeamIntroduce.Designer.cs

     文件     356232  2010-12-29 13:18  frmDevelopTeamIntroduce.resx

     文件       6803  2010-12-30 10:04  frmImport.cs

     文件      17988  2010-12-29 13:13  frmImport.Designer.cs

     文件     155637  2010-12-29 13:13  frmImport.resx

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

评论

共有 条评论