|
|
@@ -100,6 +100,7 @@ public class AirDropService {
|
|
|
//铸造空投的t+0
|
|
|
if (record.isAuto()) {
|
|
|
assetRepo.updateHoldDays(asset.getId(), 0);
|
|
|
+ log.info("合成{},T+0", asset.getId());
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
@@ -120,6 +121,7 @@ public class AirDropService {
|
|
|
Asset asset = assetService.createAsset(collection, user, null, null,
|
|
|
"空投", collection.getTotal() > 1 ?
|
|
|
collectionService.getNextNumber(collection.getId()) : null);
|
|
|
+
|
|
|
//创建展厅
|
|
|
if (collection.getType() == CollectionType.SHOWROOM) {
|
|
|
showroomService.save(asset);
|
|
|
@@ -127,6 +129,7 @@ public class AirDropService {
|
|
|
//铸造空投的t+0
|
|
|
if (record.isAuto()) {
|
|
|
assetRepo.updateHoldDays(asset.getId(), 0);
|
|
|
+ log.info("合成{},T+0", asset.getId());
|
|
|
}
|
|
|
}
|
|
|
// Asset asset = assetService.createAsset(collection, user, null, null, "空投", collectionService.getNextNumber(collection.getId()));
|