|  | @@ -550,11 +550,7 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
 | 
	
		
			
				|  |  |              sheet.setAccompanimentType(AccompanimentTypeEnum.valueOf(musicSheetApplication.getAudioType().getCode()));
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          sheet.setMusicTagNames(musicSheetApplication.getMusicTagNames());
 | 
	
		
			
				|  |  | -        if(musicSheetApplication.getMusicSheetType() == EMusicSheetType.CONCERT){
 | 
	
		
			
				|  |  | -            sheet.setSubjectNames(null);
 | 
	
		
			
				|  |  | -        }else {
 | 
	
		
			
				|  |  | -            sheet.setSubjectNames(musicSheetApplication.getSubjectNames());
 | 
	
		
			
				|  |  | -        }
 | 
	
		
			
				|  |  | +        sheet.setSubjectNames(musicSheetApplication.getSubjectNames());
 | 
	
		
			
				|  |  |          sheet.setPaymentType(musicSheetApplication.getPaymentType());
 | 
	
		
			
				|  |  |          sheet.setSortNumber(musicSheetApplication.getSortNo());
 | 
	
		
			
				|  |  |          if (musicSheetApplication.getTopFlag() != null){
 | 
	
	
		
			
				|  | @@ -801,11 +797,7 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      public void initMusicSheetVo(MusicSheetVo record,CbsMusicSheetWrapper.MusicSheetApplication musicSheetApplication){
 | 
	
		
			
				|  |  | -        if (musicSheetApplication.getMusicSheetType() == EMusicSheetType.CONCERT) {
 | 
	
		
			
				|  |  | -            record.setSubjectNames(null);
 | 
	
		
			
				|  |  | -        } else {
 | 
	
		
			
				|  |  | -            record.setSubjectNames(musicSheetApplication.getSubjectNames());
 | 
	
		
			
				|  |  | -        }
 | 
	
		
			
				|  |  | +        record.setSubjectNames(musicSheetApplication.getSubjectNames());
 | 
	
		
			
				|  |  |          record.setMusicPrice(musicSheetApplication.getMusicPrice());
 | 
	
		
			
				|  |  |          record.setCbsMusicSheetId(musicSheetApplication.getId());
 | 
	
		
			
				|  |  |          record.setAudioType(AudioTypeEnum.valueOf(musicSheetApplication.getPlayMode().getCode()));
 | 
	
	
		
			
				|  | @@ -1556,11 +1548,7 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
 | 
	
		
			
				|  |  |              if(musicSheetApplication == null){
 | 
	
		
			
				|  |  |                  continue;
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  | -            if(musicSheetApplication.getMusicSheetType() == EMusicSheetType.CONCERT){
 | 
	
		
			
				|  |  | -                record.setSubjectNames(null);
 | 
	
		
			
				|  |  | -            }else {
 | 
	
		
			
				|  |  | -                record.setSubjectNames(musicSheetApplication.getSubjectNames());
 | 
	
		
			
				|  |  | -            }
 | 
	
		
			
				|  |  | +            record.setSubjectNames(musicSheetApplication.getSubjectNames());
 | 
	
		
			
				|  |  |              record.setMusicPrice(musicSheetApplication.getMusicPrice());
 | 
	
		
			
				|  |  |              record.setCbsMusicSheetId(musicSheetApplication.getId());
 | 
	
		
			
				|  |  |              record.setAudioType(AudioTypeEnum.valueOf(musicSheetApplication.getPlayMode().getCode()));
 | 
	
	
		
			
				|  | @@ -2382,9 +2370,6 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
 | 
	
		
			
				|  |  |              throw new BizException("曲目不存在");
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          queryInfo.setMusicSheetType(musicSheet.getMusicSheetType());
 | 
	
		
			
				|  |  | -        if (musicSheet.getMusicSheetType() == MusicSheetTypeEnum.CONCERT) {
 | 
	
		
			
				|  |  | -            queryInfo.setSubjectId(null);
 | 
	
		
			
				|  |  | -        }
 | 
	
		
			
				|  |  |          return musicSheetDao.queryTenantRelatedList(page,queryInfo);
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |