- 论坛徽章:
- 0
|
请问一下各位高手下面的问题如何处理?谢谢
1 Create a database of 60 products, assign each a stock level and a unique Bin location from the range A1 – F10 (see warehouse floorplan).
建立一个数据库, 存放60个产品, 为每个产品记录库存量以及产品在仓库中的储位. 储位编号从A1到F10(请参考下面的仓库布局图).
2 Provide a method for querying a product/bin location which returns the product description, bin location and current stock level.
提供一种查询产品储位, 库存, 产品信息的方法
3 Provide a method for creating an order. An order will always consist of 5 different products chosen by the user.
提供一种下达订单的方法. 每个订单总是由5种不同产品构成.
4 If there is insufficient stock available to fulfil the order display a warning message, otherwise decrease the relevant stock levels and calculate/display the optimum picking route.
如果库存数量低于订单数量, 提示警告信息. 否则减少相应的库存数,并提供一个最佳的检货路线.
The optimum picking route must start from one of the pick stations (P1, P2, P3), and is the shortest number of steps needed to 'pick' all of the products before returning to the original pick station.
检货路线必须从工作站(P1,P2或P3)起步, 并且是检完全部货物的最短路经.
5 The picking route, including the chosen starting pick station would usually be included on the pick sheet so it must be displayed in a way easily interpreted by the picker.
起始工作站以及检货路经需要输出在一张检货表上. 检货表的表达方式需要直观明了.
6 The user interface must be web based.
所有用户界面必须采用 WEB 方式.
7 Write a short paragraph about the scalability of your solution, i.e. How would the implementation handle a much bigger warehouse?
请写一份短文描述你的软件的可扩展性. 并说明你的软件实现方法如何应对更大型的仓库.
8 An object oriented approach must be demonstrated.
必须使用面向对象编程
9 The task must be completed using PHP 5 and mySQL 5.
必须使用 PHP5 与 MYSQL5
Test of programming skill
下图是一个仓库的示意图。
Y
A10 B10 C10 D10 E10 F10
A9 B9 C9 D9 E9 F9
A8 B8 C8 D8 E8 F8
A7 B7 C7 D7 E7 F7
A6 B6 X C6 D6 E6 F6
A5 B5 C5 D5 E5 F5
A4 B4 C4 D4 E4 F4
A3 B3 C3 D3 E3 F3
A2 B2 C2 D2 E2 F2
A1 B1 C1 D1 E1 F1
P1 P2 P3 Z
1. 黄色区域是存储商品的储位,每个储位都有自己的编号,如A1,A2,B2,….。每个储位中存放着不同的商品。
2. 蓝色区域P1/P2/P3 是仓库工作人员工作站。
3. 白色区域是空白区域。
4. 仓库工作人员只可以自由行走在白色区域与蓝色区域之间,但是仓库工作人员不能跨越任何黄色区域。
5. 仓库工作人员从储位中捡出商品时,只能站立在储位旁边的空白位置。例如工作人员站在图中的X位置可以捡取存放在C6与B6的商品。注意:工作人员不能在储位的上下方捡取任何商品,例如图中的Y或Z。
现在仓库工作人员有5个不同的商品需要捡出。仓库工作人员可能会从P1/P2/P3任何一个工作站出发,捡出商品后再返回起始工作站。
请你设计一个程序帮助仓库工作人员计算出最短的捡料顺序与路径。
4. 程序需提供参数允许用户选择起始工作站点。
5. 程序需使用简单易懂的方式告诉用户具体的检料路经与顺序(图形界面最好)。
6. 请提交原代码的同时提交如下文档
7. 核心算法流程图
8. 软件说明文档:需说明软件开发语言与平台、软件运行环境、使用方法
9. 软件体系结构说明
10. 软件需要考虑可扩展性。例如当面对更大的仓库的时候,软件是否仍可以使用? |
|