Explorar el Código

调整打印页面数量

金隅分支
zhangli hace 3 años
padre
commit
fe0c44a11f
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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 Ver fichero

@@ -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') {


Cargando…
Cancelar
Guardar