Estado de Documento "Entregado" (Factura Reserva)

Hola gente!!!

Tengo esta consulta de Usuario:

SELECT 
	"OINV"."DocEntry", 
	"INV1"."LineNum", 
	"OINV"."DocNum", 
	"OINV"."DocType", 
	"OINV"."Printed", 
	"OINV"."DocStatus", 
	"OINV"."InvntSttus", 
	"OINV"."PaidSys", 
	"OINV"."PaidFC", 
	"OINV"."PaidToDate", 
	"OINV"."PartSupply", 
	"OINV"."isIns", 
	"OINV"."CardCode", 
	"OINV"."CardName", 
	"OINV"."DocDate", 
	"OINV"."NumAtCard", 
	"OINV"."Comments", 
	"INV1"."ItemCode", 
	"INV1"."Dscription", 
	"INV1"."OpenQty", 
	"INV1"."Quantity", 
	"INV1"."AcctCode", 
	"INV1"."LineTotal" / "INV1"."Quantity" as "Precio", 
	"INV1"."Price" as Precio_SinIVA, 
	"INV1"."PriceAfVAT" as "Precio_Bruto",  
	"INV1"."Rate", 
	"INV1"."LineTotal", 
	"INV1"."TotalFrgn", 
	"INV1"."GTotal", 
	"INV1"."GTotalFC", 
	"INV1"."OpenSum", 
	"INV1"."OpenSumFC"
FROM "OINV" 
	INNER JOIN "INV1" ON "OINV"."DocEntry" = "INV1"."DocEntry" 
	INNER JOIN "OITM" ON "INV1"."ItemCode" = "OITM"."ItemCode" 
WHERE ("INV1"."OpenQty" > 0 OR 
	"OINV"."DocStatus" = 'O') AND  
	"OINV"."CANCELED" = 'N' AND 
	"OINV"."isIns" = 'Y' 
ORDER BY "OINV"."DocDate", "OINV"."CardName";

Pero deseo que aquellos casos donde su Estado sea entregado esta consulta no me los traiga.


le activo la información del sistema, pero cuando pongo el mouse sobre el estado “Entregad” me dice que es una variable.
Como puedo saber cuales Facturas de Reserva ya fueron entregadas, en que tabla puedo ver dicha opción, así como las parciales?

Saludos,
David

Hola dgrvedado
Deberías poder identificar si ya se realizo la entrega para la factura de reserva, mediante la siguiente condición INV1.“TargetType” = 15

Saludos,
Andres Ramirez Jaramillo :colombia:

5 Me gusta

@andresramirez me ganaste jajajaja.

1 me gusta

Se tiene algún documento que te diga cada valor de ese campo que representa?

Saludos,
David

h_tp://www.saptables.net/?schema=BusinessOne9.2&column=TargetType

1 me gusta

Gracias :grinning: @andresramirez

Saludos,
David