|
|
|
@@ -531,14 +531,14 @@ open class ItemsService( |
|
|
|
this.qcCategory = qcCategory |
|
|
|
m18Id = request.m18Id ?: this.m18Id |
|
|
|
m18LastModifyDate = request.m18LastModifyDate ?: this.m18LastModifyDate |
|
|
|
//store_id = request.store_id |
|
|
|
//warehouse = request.warehouse |
|
|
|
//area = request.area |
|
|
|
//slot = request.slot |
|
|
|
//LocationCode = request.LocationCode |
|
|
|
//isEgg = request.isEgg ?: false |
|
|
|
//isFee = request.isFee ?: false |
|
|
|
//isBag = request.isBag ?: false |
|
|
|
request.isEgg?.let { isEgg = it } |
|
|
|
request.isFee?.let { isFee = it } |
|
|
|
request.isBag?.let { isBag = it } |
|
|
|
request.store_id?.let { store_id = it } |
|
|
|
request.warehouse?.let { warehouse = it } |
|
|
|
request.area?.let { area = it } |
|
|
|
request.slot?.let { slot = it } |
|
|
|
request.LocationCode?.let { LocationCode = it } |
|
|
|
} |
|
|
|
logger.info("saving item: $item") |
|
|
|
val savedItem = itemsRepository.saveAndFlush(item) |
|
|
|
|