Browse Source

为移动端扫码查看库存页面添加出入库选项

lwx_dev
erdanergou 2 years ago
parent
commit
f85616a026
  1. 11
      src/main/resources/templates/pages/showInventory/showInventoryForLocation.html
  2. 11
      target/classes/templates/pages/showInventory/showInventoryForLocation.html

11
src/main/resources/templates/pages/showInventory/showInventoryForLocation.html

@ -297,6 +297,9 @@
}; };
/**
* 用于跳转导入库页面
*/
applicationIn = function(){ applicationIn = function(){
miniTab.openNewTabByIframeNew({ miniTab.openNewTabByIframeNew({
href: "/application_In_temporaryValue", href: "/application_In_temporaryValue",
@ -304,14 +307,20 @@
}); });
}; };
/**
* 用于跳转到出库页面
*/
applicationOut = function () { applicationOut = function () {
miniTab.openNewTabByIframeNew({ miniTab.openNewTabByIframeNew({
href: "/application_Out_temporaryValue", href: "/application_Out_temporaryValue",
title: "出库申请" title: "出库申请"
}); });
} };
/**
* 用于选择选择框
*/
checkedInputCheck = function () { checkedInputCheck = function () {
if(chooseIdList.length > 0){ if(chooseIdList.length > 0){
for (const checkedId of chooseIdList) { for (const checkedId of chooseIdList) {

11
target/classes/templates/pages/showInventory/showInventoryForLocation.html

@ -297,6 +297,9 @@
}; };
/**
* 用于跳转导入库页面
*/
applicationIn = function(){ applicationIn = function(){
miniTab.openNewTabByIframeNew({ miniTab.openNewTabByIframeNew({
href: "/application_In_temporaryValue", href: "/application_In_temporaryValue",
@ -304,14 +307,20 @@
}); });
}; };
/**
* 用于跳转到出库页面
*/
applicationOut = function () { applicationOut = function () {
miniTab.openNewTabByIframeNew({ miniTab.openNewTabByIframeNew({
href: "/application_Out_temporaryValue", href: "/application_Out_temporaryValue",
title: "出库申请" title: "出库申请"
}); });
} };
/**
* 用于选择选择框
*/
checkedInputCheck = function () { checkedInputCheck = function () {
if(chooseIdList.length > 0){ if(chooseIdList.length > 0){
for (const checkedId of chooseIdList) { for (const checkedId of chooseIdList) {

Loading…
Cancel
Save