自动化立体仓库 - WMS系统
zjj
2025-02-20 b08837ad4e64348a27e21b2bb621352a523e2b7b
src/main/webapp/static/js/report/inOut.js
@@ -46,6 +46,17 @@
            }
            pageCurr=curr;
            limit();
            $.ajax({
                url: baseUrl+"/report/viewInOutList/count",
                headers: {'token': localStorage.getItem('token')},
                contentType:'application/json;charset=UTF-8',
                method: 'POST',
                success: function (res) {
                    $("#countNumIn").text(res.data.in + '次');
                    $("#countNumOut").text(res.data.out + '次');
                }
            });
        }
    });
@@ -218,6 +229,21 @@
            limit(child);
        }
    });
    /**
     * 显示库存总数量
     */
    $.ajax({
        url: baseUrl+"/report/viewInOutList/date/count",
        headers: {'token': localStorage.getItem('token')},
        contentType:'application/json;charset=UTF-8',
        method: 'POST',
        data: JSON.stringify(searchData),
        success: function (res) {
            console.log(res);
            $("#countNumIn").text(res.data.in + '次');
            $("#countNumOut").text(res.data.out + '次');
        }
    });
}
function setFormVal(el, data, showImg) {