-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMT410TOK .prw
48 lines (30 loc) · 854 Bytes
/
MT410TOK .prw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#INCLUDE 'Totvs.ch'
/*/{Protheus.doc} MT410TOK -
Validar confirmação da operação
@type user function
@author Joao Goncalves
@since 19/06/2024
@version 1.0
@param PARAMIXB
@return lRet
@example
(examples)
@see https://tdn.totvs.com/pages/releaseview.action?pageId=6784353
/*/
User Function MT410TOK()
Local lRet := .T. // Conteúdo de retorno
Local nX := 1
Local nOpc := PARAMIXB[1]
Local cTipoPedido := M->C5_TIPO
If nOpc == 3 .Or. nOpc == 4
If cTipoPedido == "N"
for nX:=1 to len(aCols)
If Empty(aCols[nX,GDFieldPos("C6_CC",aHeader)])
MsgStop("Não é permitido incluir/alterar um pedido do tipo 'N' sem informar o centro de custo (C6_CC).")
lRet := .F.
Exit
EndIf
Next nX
EndIf
EndIf
Return(lRet)