① 家电,酒类,方便食品对仓库的要求是否一样为什么
不一样,酒类需要防火。几乎所有食品饮料对温度、湿度和光线的变化都十分敏感。不同的食品饮料在同一种温度、湿度、光线条件之下的敏感程度又不一样。因此,不同的食品饮料应存放于不同的贮藏库之内,并给予不同的温度、湿度及光线条件,使食品、饮料始终处于最佳待食用状态。
由于食品的类别不同,就有存放对象不同有冷藏间,其对应的冷藏温度也各异。肉类的冷藏温度应在0°C-2°C之间;水果和蔬菜冷藏温度应在2°C-4°C之;乳制品冷藏温度为0°C-2°C之间;鱼的最佳冷藏温度应在0°C左右。存放多种食品的冷藏库只能采用折衷方案,将温度平均调节在2°C-4°C之间。
(1)乳山华峰家电仓库怎么样扩展阅读:
1、食品与非食品不能混放,食品仓库内不得存放有毒有害物品,不得存放个人物品和杂物。
2、仓库内要定期清扫,保持仓库、货架清洁卫生,经常开窗或用机械通风设备通风,保持干燥。
3、做好食品数量、质量合格证明或检疫证明的检查验收工作。腐烂变质、发霉生虫、有毒有害、掺杂掺假、质量不新鲜的食品,无卫生许可证的生产经营者提供的食品、未索证的食品不得验收入库。
4、做好食品数量、质量入库登记,做到先进先出,易坏先用。
5、食品按类别、品种分架、隔墙、离地整齐摆放,散装食品及原料储存容器加盖密封,同时经常检查,防止霉变。
6、肉类、水产品、禽蛋等易腐食品应分别冷藏贮存。用于保存食品的冷藏设备,必须贴有明显标识并有温度显示装置。肉类、水产类分柜存放,生食品、熟食品、半成品分柜存放,杜绝生熟混放。
② 仓库托盘是1.1m*1.1m,高度是0.15m,家电的包装箱高度80cm,仓库高7.8米,应设置为几层货架,每层的高度是多少
托盘高度+包装箱高度+叉车或堆垛机活动高度=1.1米左右,也就是层高1.1米左右,横梁厚度一版般为0.14米(具权体数值需要根据承重来定,姑且以0.14来算),如果货架到顶,那么层高设置为1.16米,那么应该设置五层货架,可以放六层货,6*(0.14+1.16)=7.8米,为了安装方便和维护一般后装的货架都不到顶(先装货架后盖仓库的另说),所以层高为1.1米就可以了,那么货架距离顶部还有0.36米。
结论:设置为五层货架,每层层高为1.1米。以上是天津德泰通源货架厂根据你的情况进行设计的,具体的货架层数和层高还需要根据具体的情况如载重,仓库的基础、公司的预算等来确定,最好让专业人士进行现场勘测、设计!
③ 家电仓库应控制在多高的温度适宜温度高对电器有什么影响
家电仓库的温度一般在45℃以下没有问题(一般电器工作时的温度还要高),仓库的温度过高可能会使电器的塑料发生软化等问题。
同理,电子材料仓库如果长期处在高温下,一般对电子材料的影响不大。
④ 用C++6.0 mfc编写一个关于家电仓库管理系统的工程(有类似的也可以)
http://www.pudn.com/downloads459/sourcecode/database/detail1932247.html
⑤ c语言程序设计家电仓库管理系统 求大神帮助
#include <stdafx.h>
#include<stdio.h>
#include<string.h>
#define SIZE 2//SIZE为仓库电器种类
struct goods
{
char name[10];
char brand[10];
char style[10];
int num;
float money;
}stu[SIZE];//库存结构
struct date
{
int year;
int month;
int day;
};//日期结构
struct entrance
{
char name[10];
char brand[10];
char style[10];
int num;
float money;
struct date time;
char stuf[10];
}stu_2[SIZE];//入库结构
struct exit
{
char name[10];
char brand[10];
char style[10];
int num;
struct date time;
char stuf[10];
}stu_3[SIZE];//出库结构
void main()
{
void save_1();
void save_2();
void save_3();
void change_1();
void change_2();
void found_1();
void found_2();
int i;
printf("please input the information:\n");
for(i=0;i<SIZE;i++)
{
scanf("%s%s%s%d%d",stu[i].name,stu[i].brand,stu[i].style,&stu[i].num,&stu[i].money);
} //输入库存
save_1(); //利用函数将库存保存
FILE *fp;
fp=fopen("stu_list.txt","rb");
for(i=0;i<SIZE;i++)
{
fread(&stu[i],sizeof(struct goods),1,fp);
printf("%s %s %s %d %d",stu[i].name,stu[i].brand,stu[i].style,stu[i].num,stu[i].money);
printf("\n");
} //读出信息
fclose(fp);
printf("请输入物资入库信息:\n");//输入入库信息
for(i=0;i<SIZE;i++)
scanf("%s%s%s%d%f%d%d%d%s",stu_2[i].name,stu_2[i].brand,stu_2[i].style,&stu_2[i].num,&stu_2[i].money,&stu_2[i].time.year,&stu_2[i].time.month,&stu_2[i].time.day,stu_2[i].stuf);
save_2(); //创建入库文件
change_1();
printf("请输入出库信息\n");
scanf("%s%s%s%d%d%d%d%s",stu_3[i].name,stu_3[i].brand,stu_3[i].style,&stu_3[i].num,&stu_3[i].time.year,&stu_3[i].time.month,&stu_3[i].time.day,stu_3[i].stuf);
for(i=0;i<SIZE;i++)
{
if(stu_3[i].num>stu[i].num)
{
printf("the error number!please input again!\n");
break;
}
else
{
save_3();
change_2();
}
}
found_1();
found_2();
}
void save_1()
{
FILE *fp;
int i;
if((fp=fopen("stu_list.txt","wb"))==NULL)
{
printf("connot open the file\n");
return;
}
for(i=0;i<SIZE;i++)
{
if(fwrite(&stu[i],sizeof(struct goods),1,fp)!=1)
printf("file write error\n");
}
fclose(fp);
}
void save_2()
{
FILE *fp;
int i;
if((fp=fopen("stu_list_2.txt","wb"))==NULL)
{
printf("connot open the file\n");
return;
}
for(i=0;i<SIZE;i++)
{
if(fwrite(&stu_2[i],sizeof(struct entrance),1,fp)!=1)
printf("file write error\n");
}
fclose(fp);
}
void change_1()
{
int i;
for(i=0;i<SIZE;i++)
{
if(strcmp(stu[i].name,stu_2[i].name)==0&&strcmp(stu[i].brand,stu_2[i].brand)==0&&strcmp(stu[i].style,stu_2[i].style)==0)
{
stu[i].num=stu[i].num+stu_2[i].num;
}
}
save_1();
}
void save_3()
{
FILE *fp;
int i;
if((fp=fopen("stu_list_3.txt","wb"))==NULL)
{
printf("connot open the file\n");
return;
}
for(i=0;i<SIZE;i++)
{
if(fwrite(&stu_3[i],sizeof(struct exit),1,fp)!=1)
printf("file write error\n");
}
fclose(fp);
}
void change_2()
{
int i;
for(i=0;i<SIZE;i++)
{
if(strcmp(stu[i].name,stu_3[i].name)==0&&strcmp(stu[i].brand,stu_3[i].brand)==0&&strcmp(stu[i].style,stu_3[i].style)==0)
{
stu[i].num=stu[i].num-stu_3[i].num;
}
}
save_1();
}
void found_1()
{
FILE *fp;
int i;
int sum=0;
char name[10];
char brand[10];
printf("please input the name and brand:\n");//4.1 4.2 5.1
scanf("%s%s",name,brand);
if((fp=fopen("stu.list.txt","rb"))==NULL)
{
printf("connot open the file!\n");
return;
}
for(i=0;i<SIZE;i++)
{
if(fread(&stu[i],sizeof(struct goods),1,fp)!=1)
{
if(strcmp(name[10],stu[i].name[10])==0)
{
printf("the information of the good:\n");
printf("%s %s %s %d %d",stu[i].name,stu[i].brand,stu[i].style,stu[i].num,stu[i].money);
sum=sum+stu[i].num;
}
if(strcmp(brand[10],stu[i].brand[10])==0)
{
printf("the information of the good:\n");
printf("%s %s %s %d %d",stu[i].name,stu[i].brand,stu[i].style,stu[i].num,stu[i].money);
}
}
}
printf("the number of this %s is %d.\n",name[10],sum);
}
void found_2()
{
FILE *fp;
int i;
int j;
int sum=0;
int year_1,year_2,month_1,month_2,day_1;
char name_1[10],name_2[10],style_1[10];
if((fp=fopen("stu_list_2.txt","rb"))==NULL)
{
printf("connot open the file!\n");
return;
}
if((fp=fopen("stu_list_3.txt","rb"))==NULL)
{
printf("connot open the file!\n");
return;
}
printf("please input year_1,month_1,day_1,then find the exit and entrance:\n");
scanf("%d%d%d",&year_1,&month_1,&day_1);
printf("please input the name and style,then find the good's entrance and exit");
scanf("%s%s",name_1,style_1);
printf("please input the name of the good,then output the number or its entrance:\n");
scanf("%s",name_2);
printf("please input year_2 and month_2,then output the number of exit in this month:\n");
scanf("%d%d",&year_2,&month_2);
printf("please input the red number,then output all the informations of the goods:\n");
scanf("%d",&j);
for(i=0;i<SIZE;i++)
{
if((fread(&stu_2[i],sizeof(struct entrance),1,fp)!=1)&&(fread(&stu_3[i],sizeof(struct exit),1,fp)!=1))//读出入库和出库信息
{
if((stu_2[i].time.year==year_1)&&(stu_2[i].time.month==month_1)&&(stu_2[i].time.day==day_1))//入库信息4.3
{
printf("%s%s%s%d%f%d%d%d%s",stu_2[i].name,stu_2[i].brand,stu_2[i].style,stu_2[i].num,stu_2[i].money,stu_2[i].time.year,stu_2[i].time.month,stu_2[i].time.day,stu_2[i].stuf);
}
if((stu_3[i].time.year==year_1)&&(stu_3[i].time.month==month_1)&&(stu_3[i].time.day==day_1))//出库信息4.3
{
printf("%s%s%s%d%d%d%d%s",stu_3[i].name,stu_3[i].brand,stu_3[i].style,stu_3[i].num,stu_3[i].time.year,stu_3[i].time.month,stu_3[i].time.day,stu_3[i].stuf);
}
}
}
for(i=0;i<SIZE;i++)//4.4
{
if((fread(&stu_2[i],sizeof(struct entrance),1,fp)!=1)&&(fread(&stu_3[i],sizeof(struct exit),1,fp)!=1))//读出入库和出库信息
{
if((strcmp(stu_2[i].name,name_1))==0&&(strcmp(stu_2[i].style,style_1))==0)
{
printf("%s%s%s%d%f%d%d%d%s",stu_2[i].name,stu_2[i].brand,stu_2[i].style,stu_2[i].num,stu_2[i].money,stu_2[i].time.year,stu_2[i].time.month,stu_2[i].time.day,stu_2[i].stuf);
}
if((strcmp(stu_3[i].name,name_1))==0&&(strcmp(stu_3[i].style,style_1))==0)
{
printf("%s%s%s%d%d%d%d%s",stu_3[i].name,stu_3[i].brand,stu_3[i].style,stu_3[i].num,stu_3[i].time.year,stu_3[i].time.month,stu_3[i].time.day,stu_3[i].stuf);
}
}
}
for(i=0;i<SIZE;i++)//5.3
{
if((fread(&stu_3[i],sizeof(struct exit),1,fp)!=1))
if(stu_3[i].time.year==year_2&&stu_3[i].time.month==month_2)
{
sum=sum+stu_3[i].num;
}
}
printf("the time of exit is %d.\n",sum);
for(i=0;i<SIZE;i++)
{
if((fread(&stu[i],sizeof(struct goods),1,fp)!=1))
{
if(stu[i].num<j)
{
printf("th information of the good are:\n");
printf("%s%s%s%d%f",stu[i].name,stu[i].brand,stu[i].style,stu[i].num,stu[i].money);
}
}
}
}
⑥ 家电,酒类,方便食品对仓库的要求
储存仓库一般地势高,不容易进水是前题。阴凉通风干爽,交通方便是首选。
⑦ 家电仓库应该如何摆放安排货架
你们库房有多大面积?看上去不是很高,也就五六米吧,上横梁式货架意义不大专,干脆平地堆码,估属计达到商品堆码极限,也快到房顶了。如果要上,也就是三层的横梁式货架,还需要留出叉车操作的通道,大家电还需要购置抱夹式叉车。
⑧ 家电仓库管理制度与奖罚制度
仓库管理与奖罚制度
1、为了强化物资用品的计划管理,严格执行物资的入出库制度,使仓库管理员有较地掌握物资入出库的主动权,规定各使用部门,应将经财务部批准的当月采购计划复印一份,交仓库作为入出库控制的依据.
2、严格执行物资入出库制度,认真办理物资入库验收手续,应做到三不入库:
(1)不合格的不入库;
(2)不符合质量标准的不入库;
(3)计划外或未经领导批准的不入库。
3、认真执行物资出库手续,仓库管理人员必须认真审查出库单是否符合规定,内容是杏完整,签字是否齐全,并同时核对其部门的采购计划批准的品种、数量是否相符,不能突破.以保证采购计划及成本费用计划的有效执行。才能进一步保证利润计划的实现。
4、保管员对库房的所有物品,都应按类别、品种、规格、分别码放,做到定物、定位、定架,一目了然,易于盘点,同时每种物品,都必须设置有收、付、存数量的物品卡,每日应将当日发生的收付存结出,以便能及时准确的反映库存。
5、保管员对每月库房的物品卡要与全库记帐员对帐一次,必须做到帐卡相符,卡实相符。
6、库房的所有物资,必须以高度负责的精神,保证做到完好无损(特殊情况例外)凡因责任心不强和保管不善而造成物资损失的,根据损失具体情况,按损失总额的1%-2%追究其经济责任。
7、库房每月末必须进行一次全面清查盘点,并按规定表格,编制盘点表,每月二十五日内报送财务部,发生盘盈盘亏情况时,应附文字说明,经财务部审查和提出处理意见后,报请总经理批准执行。
8、本规定如有未尽事宜,经有关部门领导研究后,可随时修正补充
⑨ 京东家电仓库规格
每个地方都不一样,并没有单独透露家电仓库规格。京东集团在全国一共有515个仓库。总面积约1090万平方米。平均每个仓库的面积为2.12万平方米。其中,自动化程度非常高的亚洲一号智能仓库,是京东物流的骄傲。目前,京东已经在北京、上海、广州、沈阳、成都、武汉等大城市,建立了十几个亚洲一号。京东在广州的仓库,京东在广州至少有10个仓库,其中广州地区最大的仓库—亚洲一号广州仓库,在黄浦区的凤凰一横路与076乡道交叉口东200米。