on 2020 Nov 27 1:43 PM
Bom dia
A minha duvida é, se existe alguma tabela que armazena os tipos de documentos.
Por exemplo:
TF - transferencia de estoque
NS - nota fiscal de saida
NE - nota fiscal de entrada
etc...
Existe um relatorio de rastreamento de lotes, que possui essa coluna com o titulo de "Código de origem do documento".
Obrigado
Bom dia, vê se ajuda
SELECT
CASE T3.BaseType
WHEN 13 THEN 'Fatura Clientes'
WHEN 14 THEN 'Notas de credito Clientes'
WHEN 15 THEN 'Doc. Entrega'
WHEN 16 THEN 'Devolução'
WHEN 18 THEN 'Fatura Fornecedores'
WHEN 17 then 'Pedido Vendas'
WHEN 19 THEN 'Notas de credito Fornecedores'
WHEN 20 THEN 'Entrada Mercadoria OP'
WHEN 21 THEN 'Devolução Mercadoria'
WHEN 59 THEN 'Entrada Mercadorias'
WHEN 60 THEN 'Saída de mercadorias'
WHEN 67 THEN 'Transferencia de Estoque'
ELSE CONVERT(NVARCHAR(20),T3.BaseType)
END AS Documento,
FROM OIBT T0
INNER JOIN OBTN T1 ON T1.ItemCode=T0.ItemCode AND T1.DistNumber=T0.BatchNum
INNER JOIN OBTQ T2 ON T2.ItemCode=T1.ItemCode AND T2.SysNumber=T1.SysNumber
LEFT JOIN IBT1 T3 ON T3.ItemCode=T0.ItemCode AND T3.BatchNum=T0.BatchNum
LEFT JOIN JDT1 T4 ON T4.TransType=T3.BaseType AND T4.BaseRef=T3.BaseNum AND T4.CreatedBy=T3.BaseEntry
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
111 | |
9 | |
8 | |
6 | |
5 | |
5 | |
5 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.