Location:
Search - Goods
Search list
Description: 包含cpp文件,说明文件,exe文件。C++程序,模拟商店货物管理。将商店的货物,定义为一个货物数组类,数组对象动态建立,初始为20个元素,不够用时扩充一倍。
用二进制数据文件建立数组元素对象,要求放在构造函数中,而文件的保存和关闭放在析构函数中。第一次运
行时,建立空的数据文件,由键盘输入建立数组元素对象,并写入文件,程序退出时,关闭文件;下一次运行
就可以由文件构造对象,恢复前一次做过的工作-contains documents, notes, exe. C procedures, shops cargo management. To store the goods, defined as an array of goods category, the establishment of dynamic object array, the initial elements of the 20, not enough time doubled. The binary data files to establish array elements targets, on Constructors, and the preservation of documents and closure on the destructor. Run for the first time, the establishment of air data files from the keyboard input array elements to establish targets, and write documents, procedures to pull out, close the file; Next run by the paper on the object, before a resumption of the work done
Platform: |
Size: 50887 |
Author: 张林 |
Hits:
Description: 使用数组或链表完成一个在控制台下运行(字符界面)的简单的商品库存信息管理系统。
商品信息包括如下字段
商品号 int CodeID
商品名称 char Name[50]
商品库存 int Mount
主程序:程序运行后,循环显示如下菜单:
1. 销售
2. 进货
3. 列举商品信息
4. 清除所有商品
5. 退出
根据用户的选择进一步提示用户输入并调用对应函数完成相应的功能。
主要的功能函数
CreateList:从goods.dat文件中读取商品库存信息,建立链表。
DestroyList:保存链表中所有商品的信息到goods.dat文件中,删除链表的所有节点,并释放相应的空间。本函数在程序退出前应至少被调用一次。
SellGoods:商品销售,由参数传入商品号和销售数量。如果不存在给定商品号的商品或销售数量大于相应商品的库存则出错;否则,从指定商品的库存中扣除相应的销售数量。当商品库存为0,则从链表中删除该商品。
StockGoods:商品进货,由参数传入商品号和进货数量。如果不存在给定商品号的商品则在链表中插入新商品;否则,增加指定商品的库存量。
ListGoods:列出所有商品的情况。
Platform: |
Size: 4230 |
Author: abo |
Hits:
Description: 包含cpp文件,说明文件,exe文件。C++程序,模拟商店货物管理。将商店的货物,定义为一个货物数组类,数组对象动态建立,初始为20个元素,不够用时扩充一倍。
用二进制数据文件建立数组元素对象,要求放在构造函数中,而文件的保存和关闭放在析构函数中。第一次运
行时,建立空的数据文件,由键盘输入建立数组元素对象,并写入文件,程序退出时,关闭文件;下一次运行
就可以由文件构造对象,恢复前一次做过的工作-contains documents, notes, exe. C procedures, shops cargo management. To store the goods, defined as an array of goods category, the establishment of dynamic object array, the initial elements of the 20, not enough time doubled. The binary data files to establish array elements targets, on Constructors, and the preservation of documents and closure on the destructor. Run for the first time, the establishment of air data files from the keyboard input array elements to establish targets, and write documents, procedures to pull out, close the file; Next run by the paper on the object, before a resumption of the work done
Platform: |
Size: 50176 |
Author: 张林 |
Hits:
Description: 使用数组或链表完成一个在控制台下运行(字符界面)的简单的商品库存信息管理系统。
商品信息包括如下字段
商品号 int CodeID
商品名称 char Name[50]
商品库存 int Mount
主程序:程序运行后,循环显示如下菜单:
1. 销售
2. 进货
3. 列举商品信息
4. 清除所有商品
5. 退出
根据用户的选择进一步提示用户输入并调用对应函数完成相应的功能。
主要的功能函数
CreateList:从goods.dat文件中读取商品库存信息,建立链表。
DestroyList:保存链表中所有商品的信息到goods.dat文件中,删除链表的所有节点,并释放相应的空间。本函数在程序退出前应至少被调用一次。
SellGoods:商品销售,由参数传入商品号和销售数量。如果不存在给定商品号的商品或销售数量大于相应商品的库存则出错;否则,从指定商品的库存中扣除相应的销售数量。当商品库存为0,则从链表中删除该商品。
StockGoods:商品进货,由参数传入商品号和进货数量。如果不存在给定商品号的商品则在链表中插入新商品;否则,增加指定商品的库存量。
ListGoods:列出所有商品的情况。
-err
Platform: |
Size: 4096 |
Author: abo |
Hits:
Description: 用Turbo C写的用于管理记录货物出入仓库的软件,先要读取一个记录货物出入数据的txt文件,然后利用此软件可进行增减删改-Turbo C was used for the management of records of goods out of warehouse software, first read a data record of the goods from txt file, and then use this software can increase or decrease in excision
Platform: |
Size: 2048 |
Author: xjq |
Hits:
Description: 一个货物进销存管理系统,采用PHP+extjs来左,界面美观,功能强大,大大增加客户体验的完美性-A cargo inventory management system that uses PHP+ extjs to the left, attractive interface, powerful functions, greatly enhancing the customer experience of perfection
Platform: |
Size: 2472960 |
Author: 冯国强 |
Hits:
Description: #include <iostream>
#include <string>
using namespace std
class Goods
{public:
Goods(char *GoodsNum,string n,double p,int a)
{
strcpy(GoodsNumber,GoodsNum)
GoodsName=n
GoodsPrice=p
GoodsAmount=a
}//构造函数,商品的编号,名字,价格,数量
~Goods(){}
friend class Manager
int quantity //声明购买数量
static float TotalPrice() //声明所购买商品的总价格
string get_GoodsName() const
double get_GoodsPrice() const
int get_GoodsAmount()
void SetGoodsNumber(char*) //设置编号函数
void SetGoodsName(string) //设置姓名函数
void SetGoodsPrice(double pr) //设置价格函数
void SetGoodsAmount(int am) //设置数量函数
int SetGoodsGuaPeriod(int y,int m,int d){} //设置保质期函数
void PrintGuaPeriod() //输出保质期
private: char GoodsNumber[3]
string GoodsName
double GoodsPrice -#include <iostream>
#include <string>
using namespace std
class Goods
{public:
Goods(char*GoodsNum,string n,double p,int a)
{
strcpy(GoodsNumber,GoodsNum)
GoodsName=n
GoodsPrice=p
GoodsAmount=a
}//构造函数,商品的编号,名字,价格,数量
~Goods(){}
friend class Manager
int quantity //声明购买数量
static float TotalPrice() //声明所购买商品的总价格
string get_GoodsName() const
double get_GoodsPrice() const
int get_GoodsAmount()
void SetGoodsNumber(char*) //设置编号函数
void SetGoodsName(string) //设置姓名函数
void SetGoodsPrice(double pr) //设置价格函数
void SetGoodsAmount(int am) //设置数量函数
int SetGoodsGuaPeriod(int y,int m,int d){} //设置保质期函数
void PrintGuaPeriod() //输出保质期
private: char GoodsNumber[3]
string GoodsName
double GoodsPrice
Platform: |
Size: 1024 |
Author: 熊舒予 |
Hits:
Description: 主要功能
企业仓库管理系统由基本信息管理模块、入库管理模块、库存管理模块、查询管理模块等几部分组成。
基本信息管理模块
该模块主要包括操作员管理、商品信息管理、库存信息管理、供应商信息管理4部分。
入库管理模块
该模块主要包括商品入库、入库退货两部分。
库存管理模块
该模块主要由库存商品打印、库存盘点、库存调拨、库存出货、库存上下限管理5部分组成。
查询管理管理模块
该模块主要由商品入库查询、入库退货查询、报损/报益查询3部分组成。
-Main function
Enterprise Warehouse Management System consists of basic information management module, storage management module, inventory management module, query management module composed of several parts.
basic information management module
The module includes operator management, product information management, inventory information management, supplier information management Part 4.
storage management module
The module includes goods storage, warehousing return in two parts.
Inventory Management Module
The module mainly stock merchandise printing, inventory counts, inventory allocation, inventory, shipping, inventory management on the lower limit of 5 parts.
Query Management Module
The module mainly by commodity warehousing queries, storage returns query, reporting loss/benefit inquiries reported 3 parts.
Platform: |
Size: 2236416 |
Author: 田清龙 |
Hits:
Description: 商品销售管理系统主要涉及两项关键技术,一是对数据库进行操作,二是对进行数据报表打印-Goods sales management system is mainly involved in two key technologies, one of the database operation, the second is for data report printing
Platform: |
Size: 12644352 |
Author: 梁荷岩 |
Hits:
Description: 仓库商品的管理系统,功能包括仓库中员工的信息管理,商品信息管理,还有就是进出货管理-Goods warehouse management system, warehouse staff functions include information management, product information management, there is into the ship management
Platform: |
Size: 1482752 |
Author: 清风 |
Hits:
Description: 用于ECMALL的数据库管理,用SQL实现货品复制。手工录入一天的数据,在这里不用一分钟。而且节省了图片文件的上传和空间占用。-For ECMALL database management, realization of goods with SQL replication. Manual entry of data a day, less than a minute here. And save image files to upload and space.
Platform: |
Size: 2048 |
Author: 朱皇宇 |
Hits:
Description: 二手物品交易系统,可以作为jsp选修课使用-Second-hand goods trading system can be used as electives with jsp
Platform: |
Size: 3039232 |
Author: 郭田生 |
Hits:
Description: 用C++和SQL2000编写的商品库存管理系统及后台数据库系统-SQL2000 with C++ and inventory management system written in goods and back-end database system
Platform: |
Size: 6414336 |
Author: 宋立柱 |
Hits:
Description: 校园二手商品管理软件,可实现文件输入输出及添加删除修改,有管理员及顾客模块-Campus management software used goods, for file input and output, and add delete modify with administrators and customer module
Platform: |
Size: 313344 |
Author: 王宽 |
Hits:
Description: 商品销售管理系统,基于SQL2005对商品销售信息进行管理-Goods sales management system
Platform: |
Size: 1527808 |
Author: peng |
Hits:
Description: 商品库存管理系统 Goods inventory management system vc6.0 ADO-Goods inventory management system vc6.0 ADO
Platform: |
Size: 2850816 |
Author: xcrj0902 |
Hits:
Description: 货物extjs+php,虽然简单,是一个入门的源码。-goods extjs+phpajax framework extjs is a complete set of rich-client solutions, but also because the functional integrity, resulting in ext-all.js have more than 400 k, Please note that this is the compressed size, but also because it is based on the functions js and css to achieve on the performance of the client machines have certain requirements, such as ie6 does not support the version of the following
Platform: |
Size: 2429952 |
Author: 文恬 |
Hits:
Description: 模拟购售货物类的C++代码,提供了购售货物的主要类。-Purchase and sale of goods simulation class in C++ code, purchase and sale of goods provided the main class.
Platform: |
Size: 10240 |
Author: guojiacheng |
Hits:
Description: 请编写一个程序,实现依次输入大马一匹驮货担数中马和小马,要求一百担货刚好一百匹马驮完的情况-Write a program in order to enter Malaysia a pack goods bear the number of horses and ponies, 100 load of goods to just one hundred horse pack finished
Platform: |
Size: 141312 |
Author: 叶子 |
Hits:
Description: Demo6-同步商品库存——Demo6-synchronous goods inventory-Demo6-synchronous goods inventory
Platform: |
Size: 1723392 |
Author: engli |
Hits:
« 12
3
4
5
6
7
8
9
10
...
50
»