Sfoglia il codice sorgente

调整打印页面数量

金隅分支
zhangli 3 anni fa
parent
commit
fe0c44a11f
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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 Vedi File

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


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


Caricamento…
Annulla
Salva