浏览代码

处理分段单价获取字段不正确的问题。

yujia 7 年之前
父节点
当前提交
d2cfc8fc01
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/webapp/resources/js/vendor/controllers/forstore/vendor_materialCtrl.js

+ 1 - 1
src/main/webapp/resources/js/vendor/controllers/forstore/vendor_materialCtrl.js

@@ -1903,7 +1903,7 @@ define([ 'app/app', 'jquery-uploadify' ], function(app) {
 			product.selected = true;
 			product.averMonthSalePrice = (product && product.price) ? product.price : 0;
 			var goodQtyPrice = {start: $scope.goods.editMinBuyQty, end: $scope.maxReserve};
-			var price = (((data && data.price) ? data.price : 0) *
+			var price = (((product && product.price) ? product.price : 0) *
 			($scope.uasBatchPutOnProperty.fluctuateRate ? $scope.uasBatchPutOnProperty.fluctuateRate : 1));
 			if ('MAINLAND' == $scope.store.enType) {
 				goodQtyPrice.rMBPrice = $filter('formateNumber')(price, 6);