|
|
@@ -72,18 +72,21 @@ define([ 'app/app' ], function(app) {
|
|
|
//选择相应的销售类型
|
|
|
$scope.sellType = function(type) {
|
|
|
if (type == 'self') {
|
|
|
- $scope.batch.selfSellEabled && ($scope.batch.sellType = type);
|
|
|
+ $scope.batch.selfSellEabled && ($scope.batch.sellType = 'self');
|
|
|
} else if (type == 'UAS') {
|
|
|
- !$rootScope.isPcbStore && ($scope.batch.sellType = type && $scope.setShowSelfSellRemindBox(true));
|
|
|
+ if (!$rootScope.isPcbStore) {
|
|
|
+ $scope.batch.sellType = 'UAS';
|
|
|
+ $scope.setShowSelfSellRemindBox(true);
|
|
|
+ }
|
|
|
}
|
|
|
- // if($scope.batch.selfSellEabled) {
|
|
|
- // $scope.batch.sellType = type;
|
|
|
- // if (type == 'UAS') {
|
|
|
- // $scope.setShowSelfSellRemindBox(true);
|
|
|
- // }
|
|
|
- // }else {
|
|
|
- // $scope.batch.sellType = 'UAS';
|
|
|
- // }
|
|
|
+ // if($scope.batch.selfSellEabled) {
|
|
|
+ // $scope.batch.sellType = type;
|
|
|
+ // if (type == 'UAS') {
|
|
|
+ // $scope.setShowSelfSellRemindBox(true);
|
|
|
+ // }
|
|
|
+ // } else {
|
|
|
+ // $scope.batch.sellType = 'UAS';
|
|
|
+ // }
|
|
|
|
|
|
};
|
|
|
|