Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -386,14 +386,12 @@ pageextension 20403 "Qlty. Workflow Resp. Options" extends "Workflow Response Op
QltyWorkflowResponse: Codeunit "Qlty. Workflow Response";
begin
QltyWorkflowResponse.SetStepConfigurationValue(Rec, QltyWorkflowResponse.GetWellKnownKeyLocation(), QltyLocationCode);
if not QltyShouldShowGrpTransfer then begin
QltyShowBinCode := true;
if DestinationLocation.Get(QltyLocationCode) then begin
QltyShowBinCode := DestinationLocation."Bin Mandatory";
if QltyBinCode <> '' then
if not DestinationBin.Get(QltyLocationCode, QltyBinCode) then
QltyBinCode := '';
end;
QltyShowBinCode := true;
if DestinationLocation.Get(QltyLocationCode) then begin
QltyShowBinCode := DestinationLocation."Bin Mandatory";
if QltyBinCode <> '' then
if not DestinationBin.Get(QltyLocationCode, QltyBinCode) then
QltyBinCode := '';
end;
end;
}
Expand Down Expand Up @@ -1042,10 +1040,8 @@ pageextension 20403 "Qlty. Workflow Resp. Options" extends "Workflow Response Op
QltyLocationCode := QltyWorkflowResponse.GetStepConfigurationValueAsCode10(Rec, QltyWorkflowResponse.GetWellKnownKeyLocation());
QltyBinCode := QltyWorkflowResponse.GetStepConfigurationValueAsCode20(Rec, QltyWorkflowResponse.GetWellKnownKeyBin());

if not QltyShouldShowGrpTransfer then begin
QltyShowBinCode := true;
if Location.Get(QltyLocationCode) then;
QltyShowBinCode := Location."Bin Mandatory";
end;
QltyShowBinCode := true;
if Location.Get(QltyLocationCode) then;
QltyShowBinCode := Location."Bin Mandatory";
end;
}
Loading