① 家電,酒類,方便食品對倉庫的要求是否一樣為什麼
不一樣,酒類需要防火。幾乎所有食品飲料對溫度、濕度和光線的變化都十分敏感。不同的食品飲料在同一種溫度、濕度、光線條件之下的敏感程度又不一樣。因此,不同的食品飲料應存放於不同的貯藏庫之內,並給予不同的溫度、濕度及光線條件,使食品、飲料始終處於最佳待食用狀態。
由於食品的類別不同,就有存放對象不同有冷藏間,其對應的冷藏溫度也各異。肉類的冷藏溫度應在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米。