-                    
+                    
                     
                     
                      
@@ -68,7 +68,7 @@
                      
                     
                         
-                            {{ scope.row.purNum*scope.row.unitPrice }}
+                            {{ scope.row.purNum*scope.row.unitPrice/100 }}
                         
                      
                      
diff --git a/src/views/foodManage/stockManage/warehouseOut/detail.vue b/src/views/foodManage/stockManage/warehouseOut/detail.vue
index 900dd130..28d5e155 100644
--- a/src/views/foodManage/stockManage/warehouseOut/detail.vue
+++ b/src/views/foodManage/stockManage/warehouseOut/detail.vue
@@ -172,12 +172,12 @@ export default {
         getContractInfo(){
             console.log(this.pageJson) 
             let param = {
-                orderGoodsId:this.pageJson.orderGoodsId
+                outId:this.pageJson.outId
             }
             //查询查询食堂下拉结构
             getWarehouseOutInfoApi(param).then((response) => {
                 this.baseInfo = response.data;
-                this.materialLis = this.baseInfo.orderGoodsDetailList;  
+                this.materialLis = this.baseInfo.imsOutInventoryDetailVOList;  
             }); 
         },  
         // 多选框选中数据
diff --git a/src/views/foodManage/stockManage/warehouseOut/edit.vue b/src/views/foodManage/stockManage/warehouseOut/edit.vue
index 4e6af3e0..fa7e73d1 100644
--- a/src/views/foodManage/stockManage/warehouseOut/edit.vue
+++ b/src/views/foodManage/stockManage/warehouseOut/edit.vue
@@ -234,13 +234,13 @@ export default {
         getContractInfo(){
             console.log(this.pageJson) 
             let param = {
-                orderGoodsId:this.pageJson.orderGoodsId
+                outId:this.pageJson.outId
             }
             //查询查询食堂下拉结构
             getWarehouseOutInfoApi(param).then((response) => {
                 this.baseInfo = response.data; 
-                this.materialList = this.baseInfo.imsOutInventoryDetailAddList; 
-                // this.materialList.forEach(item=>{
+                this.materialList = this.baseInfo.imsOutInventoryDetailVOList; 
+                // this.materialList.forEach(item=>{ 
                 //     this.$set(item,"unitPrice",Number(item.unitPrice)/100) 
                 // }) 
                 drpWareHousePageApi({ areaId:this.baseInfo.areaId }).then((response) => {
@@ -343,8 +343,7 @@ export default {
         handleSelectionChange2(selection) {
             this.batchChosenMaterial = selection;
             this.batchChosenMaterial.forEach(item=>{
-                this.$set(item,"fetchNum",0) 
-                // this.$set(item,"unitPrice",item.unitPrice/100) 
+                this.$set(item,"fetchNum",0)  
             })
         },
         confirmChosen(){
@@ -373,11 +372,8 @@ export default {
                             if(item.fetchNum==0){
                                 this.noMaterial = true
                             }else{
-                                let obj = Object.assign({}, item)
-                                // obj.unitPrice = Number(obj.unitPrice)*100 
-                                // obj.totalPrice =  (Number(obj.unitPrice)*Number(obj.fetchNum)) 
-                                // param.totalAmount = param.totalAmount+obj.totalPrice; 
-                                // param.totalNum = param.totalNum+Number(obj.fetchNum)
+                                let obj = Object.assign({}, item)   
+                                param.totalNum = param.totalNum+Number(obj.fetchNum)
                                 param.imsOutInventoryDetailAddList.push(obj)
                             } 
                         }) 
@@ -394,7 +390,7 @@ export default {
                             this.$modal.msgError("请添加货品!");
                         }else{
                             this.loadingBtn=true;
-                            if (this.baseInfo.orderGoodsId != undefined) {
+                            if (this.baseInfo.outId != undefined) {
                                 editWarehouseOutApi(param).then((response) => {
                                     this.$modal.msgSuccess("修改成功");
                                     this.loadingBtn=false
@@ -433,12 +429,9 @@ export default {
                             if(item.fetchNum==0){
                                 this.noMaterial = true
                             }else{
-                                let obj = Object.assign({}, item)
-                                // obj.unitPrice = Number(obj.unitPrice)*100 
-                                // obj.totalPrice =  (Number(obj.unitPrice)*Number(obj.fetchNum)) 
-                                // param.totalAmount = param.totalAmount+obj.totalPrice; 
-                                // param.totalNum = param.totalNum+Number(obj.fetchNum)
-                                param.imsOutInventoryDetailAddList.push(obj)
+                                let obj = Object.assign({}, item) 
+                                param.totalNum = param.totalNum+Number(obj.fetchNum)
+                                param.imsOutInventoryDetailAddList.push(obj) 
                             } 
                         }) 
                     } 
@@ -454,7 +447,7 @@ export default {
                             this.$modal.msgError("请添加货品!");
                         }else{
                             this.loadingBtn=true;
-                            if (this.baseInfo.orderGoodsId != undefined) {
+                            if (this.baseInfo.outId != undefined) {
                                 editWarehouseOutApi(param).then((response) => {
                                     this.$modal.msgSuccess("修改成功");
                                     this.loadingBtn=false
diff --git a/src/views/foodManage/stockManage/warehouseOut/index.vue b/src/views/foodManage/stockManage/warehouseOut/index.vue
index ed2384cb..38796517 100644
--- a/src/views/foodManage/stockManage/warehouseOut/index.vue
+++ b/src/views/foodManage/stockManage/warehouseOut/index.vue
@@ -107,9 +107,9 @@
               
          -->
 
-        
+        
             
-               {{ (scope.row.orderAmount/100).toFixed(2) }}
+               {{ (scope.row.totalAmount/100).toFixed(2) }}