|
|
@@ -2020,10 +2020,11 @@ define([ 'app/app', 'jquery-uploadify' ], function(app) {
|
|
|
UASBatchPutOnPropertyServices.save(null, $scope.uasBatchPutOnProperty, function (data) {
|
|
|
if (data.code == 1) {
|
|
|
$scope.uasBatchPutOnProperty = data.data;
|
|
|
- $scope.uasBatchPutOnProperty.editFluctuateRate = $scope.uasBatchPutOnProperty.fluctuateRate * 100;
|
|
|
+ $scope.uasBatchPutOnProperty.editFluctuateRate = NumberService.mul($scope.uasBatchPutOnProperty.fluctuateRate, 100);
|
|
|
$scope.uasBatchPutOnProperty.editMinDelivery = $scope.uasBatchPutOnProperty.minDelivery;
|
|
|
$scope.uasBatchPutOnProperty.editMaxDelivery = $scope.uasBatchPutOnProperty.maxDelivery;
|
|
|
toaster.pop('success', '成功', "保存成功");
|
|
|
+ $scope.isBatch = false;
|
|
|
} else {
|
|
|
toaster.pop('error', '失败', data.message);
|
|
|
}
|