haozi 5 лет назад
Родитель
Сommit
0738e4230a

+ 2 - 2
public/js/app.js

@@ -61974,8 +61974,8 @@ module.exports = tempTip;
 /*! no static exports found */
 /***/ (function(module, exports, __webpack_require__) {
 
-__webpack_require__(/*! D:\Reald\desktop\BsWAS\src\resources\js\app.js */"./resources/js/app.js");
-module.exports = __webpack_require__(/*! D:\Reald\desktop\BsWAS\src\resources\sass\app.scss */"./resources/sass/app.scss");
+__webpack_require__(/*! D:\wamp64\www\bswas\resources\js\app.js */"./resources/js/app.js");
+module.exports = __webpack_require__(/*! D:\wamp64\www\bswas\resources\sass\app.scss */"./resources/sass/app.scss");
 
 
 /***/ }),

+ 1 - 0
resources/views/inventory/statement/inventoryCompare.blade.php

@@ -112,6 +112,7 @@
                     <td>@{{ inventoryCompare.differ }}</td>
                 </tr>
             </table>
+            {{$inventoryCompares->appends($param)->links()}}
         </div>
     </div>
 @endsection

+ 5 - 2
resources/views/inventory/stockInventory/inventoryMission.blade.php

@@ -166,6 +166,7 @@
 
                 (function 焦点放置(){
                     let inventoryInput=$('#inventoryInput')
+                    console.log(inventoryInput.length)
                     if(inventoryInput.length>0)
                         $('#inventoryInput').focus()
                 })();
@@ -194,8 +195,10 @@
                         barcodes.push(inventoryMission.commodity.barcode);
                     });
                     if (!barcodes.includes(barcode)){
-                        tempTip.setDuration(2000);
-                        tempTip.show('输入的产品条码没有对应的产品!');
+                        if (barcode!=''){
+                            tempTip.setDuration(2000);
+                            tempTip.show('输入的产品条码没有对应的产品!');
+                        }
                     }else {
                         //根据该库存和产品条码查询该条盘点记录
                         let url='{{url('inventory/searchStockInventoryRecord')}}';