【feat】 优化生成sfID
This commit is contained in:
parent
8544ba452a
commit
488547b9d4
@ -259,7 +259,8 @@ public class CsvConverterUtil {
|
|||||||
|
|
||||||
if (isEditable){
|
if (isEditable){
|
||||||
header = Stream.concat(
|
header = Stream.concat(
|
||||||
fields.stream().map(DataField::getField),
|
fields.stream().filter(dataField ->(dataField.getIsCreateable() != null && dataField.getIsCreateable()))
|
||||||
|
.map(DataField::getField),
|
||||||
Stream.of("old_owner_id__c", "old_sfdc_id__c")
|
Stream.of("old_owner_id__c", "old_sfdc_id__c")
|
||||||
).toArray(String[]::new);
|
).toArray(String[]::new);
|
||||||
}else {
|
}else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user