on 2016 Aug 01 8:51 PM
Estimados
La idea de la creación de esta consulta es obtener la trazabilidad completa de la OC este abierta-cerrada o cancelada para verificar si se realizó la entrada de mercadería, el precio de entrega o si se facturo.
Las tablas que se deben ocupar serian:
Pedido (OPOR - POR1)
Entrada de Mercaderia (OPDN - PDN1)
Entrega de Precio (OIPF - IPF1)
Factura (OPCH - PCH1)
Deberia de quedar de esta forma, en verdad es que he realizado muchas pruebas pero no tengo un resultado optimo, favor su ayuda.
OPOR.DocNum | OPOR.DocDate | OPOR.NumAtCard | OPOR.CardName | OPOR.DocTotal | OPOR.DocCur | OPDN.DocNum | OPDN.DocDate | OPDN.NumAtCard | OPDN.CardName | OPDN.DocCur | OPDN.DocTotal | OIPF.DocNum | OIPF.DocNum | OIPF.DocTotal |
N° OC | Fecha OC | Referencia | Nombre Proveedor | Total monto OC | Moneda | Entrada de mercaderia | Fecha de entrada | Referencia | Nombre Proveedor | Moneda | Total monto OC | Precio de entrega | Fecha precio de entrega | Total monto Precio de Entrega |
Atte.
José Miguel:
Acá una query que puede servir de guía, solo debes agregar la tabla del precio de entrega (OIPF y IPF1)
----------------------------------------------------x---------------------------------------------------------
SELECT
T0.[Docnum] AS 'Pedido',
T0.[Docdate] AS 'Fechadoc',
T0.NumAtCard,
T0.[Cardcode] ,
T0.[Cardname] AS 'Proveedor',
T1.[ItemCode] AS 'Artículo',
T1.[Dscription] AS 'Descripción',
T1.Quantity as 'Cantidad Solicitada',
T1.OpenCreQty 'Cantidad Pendiente OC',
Case when T2.[Linestatus] = 'O' Then 'Abierta' when T2.[Linestatus] = 'C' then 'Completa' else 'Eliminada' end ,
T3.[DocNum] AS 'Entrada de mercancías',
T2.OpenCreQty 'Cantidad Pendiente de Factura',
T5.[Docnum] AS 'Número Interno Factura',
T5.FolioNum 'Folio Factura'
from opor t0 inner join por1 t1 on t0.docentry=t1.docentry
left join pdn1 t2 on t2.baseentry=t1.docentry and t2.basetype=22 and t2.baseline=t1.linenum
left join opdn t3 on t2.docentry=t3.docentry
left join pch1 t4 on t4.baseentry=t2.docentry and t4.basetype=20 and t4.baseline=t2.linenum
left join opch t5 on t4.docentry=t5.docentry
Left join OITM T6 on T1.ItemCode = T6.ItemCode
WHERE T6.[ItmsGrpCod]= 106 --- ACÀ PUEDES FILTRAR POR OTRO CRITERIO
-----------------------------------------------------------X---------------------------------------------
Espero haber aportado.
Saludos cordiales,
Manuel Díaz G.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
87 | |
8 | |
6 | |
5 | |
5 | |
5 | |
5 | |
5 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.