| | |
| | | public Boolean isShow { get; set; } |
| | | public List<Attachment> attachments { get; set; } |
| | | //CHAN-BC6BV2 XHL AddEnd 20190522 |
| | | // 20231103 Lightning文件修改 Start |
| | | public List<ContentDocument> contents { get; set; } |
| | | // 20231103 Lightning文件修改 End |
| | | //分页功能 |
| | | public Integer pageLimit {get; set;} |
| | | public String soql {get; set;} |
| | | |
| | | public AssetModifyBelongsController(ApexPages.StandardController stdController) { |
| | | |
| | | isShow = false; |
| | | RawAccountId = ApexPages.currentPage().getParameters().get('accountId'); |
| | | Id = ApexPages.currentPage().getParameters().get('Id'); |
| | |
| | | } |
| | | contents=[SELECT Title,OwnerId,ContentModifiedDate from ContentDocument WHERE id IN :fileIDs]; |
| | | } |
| | | |
| | | //update 李文涛 2023/07/13 更新lightning附件上传 end |
| | | } |
| | | |
| | |
| | | Map<String, AssetModifyBelongsChangeDetailInfo> MidMap = new Map<String, AssetModifyBelongsChangeDetailInfo>(); |
| | | |
| | | if (Id == NULL || Id == '') { |
| | | // text1='Installation_Site__c'; |
| | | soql = this.makeSoql1('', ''); |
| | | assetListed = Database.query(soql); |
| | | assetListed = noSubmittedList(assetListed); |