Explorar el Código

update

master
cyril.tsui hace 1 semana
padre
commit
7747dc8c82
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/main/java/com/ffii/fpsms/modules/purchaseOrder/service/PurchaseOrderService.kt

+ 2
- 1
src/main/java/com/ffii/fpsms/modules/purchaseOrder/service/PurchaseOrderService.kt Ver fichero

@@ -185,10 +185,11 @@ open class PurchaseOrderService(
}
val mappedPoLine = pol.map { thisPol ->
val inLine = stockInLine.filter { it.purchaseOrderLineId == thisPol.id }
val categoryCode = thisPol.item?.qcCategory?.code
val qcItems = thisPol.item?.qcCategory?.qcItemCategory?.map {
QcForPoLine(
id = it.qcItem?.id,
code = it.qcItem?.code,
code = categoryCode,
name = it.qcItem?.name,
description = it.description
)


Cargando…
Cancelar
Guardar