mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
12 lines
356 B
AL
12 lines
356 B
AL
codeunit 50144 "Perf Sample AtomicSub Bad"
|
|
{
|
|
procedure ApplyDiscountToSelection(var Customer: Record Customer)
|
|
begin
|
|
if Customer.FindSet(true) then
|
|
repeat
|
|
Customer."Customer Price Group" := 'VIP';
|
|
Customer.Modify(true);
|
|
Commit();
|
|
until Customer.Next() = 0;
|
|
end;
|
|
}
|