Skip to content
Open
Show file tree
Hide file tree
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 @@ -166,11 +166,11 @@ table 30142 "Shpfy Refund Header"
RefundShippingLine: Record "Shpfy Refund Shipping Line";
DataCapture: Record "Shpfy Data Capture";
begin
RefundLine.SetRange("Refund Id");
RefundLine.SetRange("Refund Id", Rec."Refund Id");
if not RefundLine.IsEmpty() then
RefundLine.DeleteAll(true);

RefundShippingLine.SetRange("Refund Id");
RefundShippingLine.SetRange("Refund Id", Rec."Refund Id");
if not RefundShippingLine.IsEmpty() then
RefundShippingLine.DeleteAll(true);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ table 30147 "Shpfy Return Header"
ReturnLine: Record "Shpfy Return Line";
DataCapture: Record "Shpfy Data Capture";
begin
ReturnLine.SetRange("Return Id");
ReturnLine.SetRange("Return Id", Rec."Return Id");
if not ReturnLine.IsEmpty() then
ReturnLine.DeleteAll(true);

Expand Down
Loading