Browse Source

调整打印页面数量

金隅分支
zhangli 3 years ago
parent
commit
fe0c44a11f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml

+ 2
- 2
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml View File

@@ -151,10 +151,10 @@
AAIPrice = tempdatra[i].AAIPrice;
}
if (AAIStock && AAIStock != 'undefined') {
num += AAIStock;
num += parseFloat(AAIStock);
}
if (AAIPrice && AAIPrice != 'undefined') {
price += AAIPrice;
price += parseFloat(AAIPrice);
}

if (AAIStock && AAIStock != 'undefined' && AAIPrice && AAIPrice != 'undefined') {


Loading…
Cancel
Save