#
luxiaotao1123
2022-01-04 847574e092ed2b348dac7d8b32e314fd35007c03
#
2个文件已修改
23 ■■■■ 已修改文件
static/js/app.js 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
static/js/object/StoreGoods.js 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
static/js/app.js
@@ -336,20 +336,6 @@
                            if (line.bins !== null) {
                                new StoreGoods(object, line.bins, shelf);
                            }
                            //显示库位上的货物
                            // for (var bin of line.bins) {
                            //     let existGoods=this.getExistedGoodType(bin.State);
                            //     let storeGoods = new StoreGoods(optionGroup, bin);
                            //     if(existGoods==null) {
                            //         let goods=storeGoods.create();
                            //         object.addObject(goods);
                            //         this.goodTypes.push({type: bin.State, object: goods});
                            //     } else {
                            //         let goods= storeGoods.clone(existGoods);
                            //         object.addObject(goods);
                            //     }
                            // }
                        }
                    }
                    this.firstTime = 0;
static/js/object/StoreGoods.js
@@ -38,18 +38,15 @@
                        }
                    });
                    obj.scale.set(4, 4, 3.5);
                    obj.position.x = -1;
                    obj.position.y = 22;
                    obj.position.z = -46;
                    palletList.map(item => {
                        var clone = obj.clone();
                        let clone = obj.clone();
                        let positionX = that.shelf.positionX || 0;
                        let positionY = that.shelf.positionY || 0;
                        let positionY = that.shelf.bottomHight + (item.lev1-1)*that.shelf.binHeight || 0;
                        let positionZ = that.shelf.positionZ || 0;
                        clone.position.x = -18 + positionX;
                        clone.position.y = 22 + positionY;
                        clone.position.y = 2 + positionY;
                        clone.position.z = -46 + positionZ;
                        that.object.addObject(clone);
                    })