Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Simultaneous User Layout Printing and Order Saving

Task: To create a script that will simultaneously print a user layout at the cash station and save an order. The script uses a function key that runs a user selector.

...

Code Block
procedure CheckViewOnAfterCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject);
 
var i, j, numcateg, OrderTypeCode, GuestTypeIdent: integer;
 
DiscCode, HaveDisc: integer;
 
it, CurItem: TCheckItem;
 
SL: TStringList;
 
newsum, aftersum, beforesum, limitsum, topay, a, q, Price: double;
 
d: TDish;
 
CheckView: TCheckView;
 
Categ: TClassificatorGroup;
 
begin
 
CheckView := TCheckView(GUI.FindComponentByName('CheckView'));
 
if CheckView = Nil then Exit;
 
HaveDisc := 0;
 
// ******************************************************************
 
DiscCode := 11; // discount code for the special dish
 
numcateg := 8; // category code for the special dish
 
limitsum := 500; // min order amount with all discounts
 
OrderTypeCode := 1; // order type code
 
GuestTypeIdent := 1000087; // guest type id
 
// ******************************************************************
 
CurItem := RKCheck.CurrentCheckItem;
 
SL := TStringList.Create;
 
// if (RKCheck.CurrentOrder.OrderTypeCode = 2) then // for different OrderTypeCode
 
// if (RKCheck.CurrentOrder.OrderCategoryCode = 2) then // for different OrderCategoryCode
 
// if (RKCheck.CurrentOrder.Visit.GuestType = 0) then // for different GuestType
 
if (RKCheck.CurrentOrder.OrderTypeCode = OrderTypeCode) // for different OrderTypeCode
 
or(RKCheck.CurrentOrder.Visit.GuestType = GuestTypeIdent) // for different GuestType
 
then
 
try
 
// Create list of the dishes, sorted by price
 
SL.Sorted := False;
 
for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do
 
begin
 
it := RKCheck.CurrentOrder.Sessions.Lines[i];
 
Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', numcateg)); //5 - category code
 
// if SYS.ObjectInheritsFrom(TObject(it), 'TDiscountItem') then
 
// if TDiscountItem(it).code = 11 then
 
// gui.showmessage('111111111');
 
// if TDiscountItem(it).CalcAmount > 0 then
 
// HaveDisc := HaveDisc + 1;
 
if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then //Check dish lines only
 
if Categ.IsChild(it.RefItem) then //Check category of the dish
 
// if (it.RefItem.MainParent.code =11 ) then // if dish from categore of menu and have same code
 
if ((it.State = disOpened) or (it.State = disPrinted)) then
 
if TDish(it).Quantity > 0 then
 
begin
 
if SL.Count<1 then
 
begin
 
if (TDish(it).Quantity = 0) or (TDish(it).PRListSum = 0) then Price := TDish(it).Price
 
else Price := TDish(it).PRListSum/TDish(it).Quantity;
 
SL.AddObject(FormatFloat('00000000.00', Price) + IntToStr(TDish(it).UNI), TObject(it));
 
end;
 
end;
 
end;
 
 
//Magic
 
q:=0;
 
newsum := 0;
 
aftersum := 0;
 
beforesum := 0;
 
if SYS.ObjectInheritsFrom(AObjectAft, 'TDish') then
 
aftersum := TDish(AObjectAft).PRListSum
 
else
 
aftersum := 0;
 
if SYS.ObjectInheritsFrom(AObjectBef, 'TDish') then
 
beforesum := TDish(AObjectBef).PRListSum
 
else
 
beforesum := 0;
 
newsum := aftersum-beforesum;
 
for i:= 0 to SL.Count - 1 do
 
begin
 
a:= 0;
 
d:= TDish(SL.Objects[i]);
 
q:= d.Quantity;
 
if (d.Quantity = 0) or (d.PRListSum = 0) then Price := d.Price
 
else Price := d.PRListSum/d.Quantity;
 
a:= a + Price;
 
 
// search special discount
 
for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do
 
begin
 
it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);
 
if (it.Code = DiscCode) then
 
HaveDisc := HaveDisc + 1;
 
end;
 
 
if HaveDisc > 0 then
 
topay := RKCheck.CurrentOrder.UnpaidSum + a
 
else
 
topay := RKCheck.CurrentOrder.UnpaidSum;
 
 
if topay-a+newsum >= limitsum then
 
begin
 
// Delete discount, if a sum changed
 
for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do
 
begin
 
it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);
 
if (it.Code = DiscCode) then
 
begin
 
 
if abs(TDiscountItem(it).CalcAmount) = a then a := 0
 
else begin
 
RKCheck.DeleteCheckItem(it);
 
end;
 
break;
 
end;
 
end;
 
// Create discount to a dish
 
if a > 0 then
 
begin
 
CheckView.GotoItem(TObject(d));
 
RKCheck.CreateCheckItem(rkrefDiscounts, IntToStr(DiscCode), FloatToStr(a));
 
end;
 
end
 
else
 
begin
 
// Delete discount, if a sum changed
 
for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do
 
begin
 
it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);
 
if (it.Code = DiscCode) then
 
begin
 
RKCheck.DeleteCheckItem(it);
 
break;
 
end;
 
end;
 
end;
 
end;
 
finally
 
SL.Free();
 
if CurItem <> Nil then CheckView.GotoItem(CurItem);
 
end;
 
RKCheck.CurrentOrder.Recalc();
 
end;
 
 
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string);
 
var i, j, numcateg, OrderTypeCode, GuestTypeIdent: integer;
 
DiscCode, HaveDisc: integer;
 
it, CurItem: TCheckItem;
 
SL: TStringList;
 
newsum, aftersum, beforesum, limitsum, topay, a, q, Price: double;
 
d: TDish;
 
CheckView: TCheckView;
 
Categ: TClassificatorGroup;
 
begin
 
CheckView := TCheckView(GUI.FindComponentByName('CheckView'));
 
if CheckView = Nil then Exit;
 
HaveDisc := 0;
 
// ******************************************************************
 
DiscCode := 11; // discount code for the special dish
 
numcateg := 8; // category code for the special dish
 
limitsum := 500; // min order amount with all the discounts
 
OrderTypeCode := 1; // order type code
 
GuestTypeIdent := 1000087; // guest type id
 
// ******************************************************************
 
CurItem := RKCheck.CurrentCheckItem;
 
SL := TStringList.Create;
 
// if (RKCheck.CurrentOrder.OrderTypeCode = 2) then // for different OrderTypeCode
 
// if (RKCheck.CurrentOrder.OrderCategoryCode = 2) then // for different OrderCategoryCode
 
// if (RKCheck.CurrentOrder.Visit.GuestType = 0) then // for different GuestType
 
if (RKCheck.CurrentOrder.OrderTypeCode = OrderTypeCode) // for different OrderTypeCode
 
or(RKCheck.CurrentOrder.Visit.GuestType = GuestTypeIdent) // for different GuestType
 
then
 
if AEditType = etRemove then
 
try
 
// Create list of the dishes, sorted by price
 
SL.Sorted := False;
 
for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do
 
begin
 
it := RKCheck.CurrentOrder.Sessions.Lines[i];
 
Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', numcateg)); //5 - category code
 
if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then //Check dish lines only
 
if Categ.IsChild(it.RefItem) then //Check category of the dish
 
// if (it.RefItem.MainParent.code =11 ) then // if dish from categore of menu and have same code
 
if ((it.State = disOpened) or (it.State = disPrinted)) then
 
if TDish(it).Quantity > 0 then
 
if SL.Count<1 then
 
begin
 
if (TDish(it).Quantity = 0) or (TDish(it).PRListSum = 0) then Price := TDish(it).Price
 
else Price := TDish(it).PRListSum/TDish(it).Quantity;
 
SL.AddObject(FormatFloat('00000000.00', Price) + IntToStr(TDish(it).UNI), TObject(it));
 
end;
 
end;
 
//Magic
 
q:=0;
 
newsum := 0;
 
aftersum := 0;
 
beforesum := 0;
 
if SYS.ObjectInheritsFrom(AObjectAft, 'TDish') then
 
aftersum := TDish(AObjectAft).PRListSum
 
else
 
aftersum := 0;
 
if SYS.ObjectInheritsFrom(AObjectBef, 'TDish') then
 
beforesum := TDish(AObjectBef).PRListSum
 
else
 
beforesum := 0;
 
// newsum := aftersum-beforesum;
 
newsum := -beforesum;
 
for i:= 0 to SL.Count - 1 do
 
begin
 
a:= 0;
 
d:= TDish(SL.Objects[i]);
 
q:= d.Quantity;
 
if (d.Quantity = 0) or (d.PRListSum = 0) then Price := d.Price
 
else Price := d.PRListSum/d.Quantity;
 
a:= a + Price;
 
 
// search special discount
 
for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do
 
begin
 
it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);
 
if (it.Code = DiscCode) then
 
HaveDisc := HaveDisc + 1;
 
end;
 
 
if HaveDisc > 0 then
 
topay := RKCheck.CurrentOrder.UnpaidSum + a
 
else
 
topay := RKCheck.CurrentOrder.UnpaidSum;
 
if topay-a+newsum >= limitsum then
 
// if RKCheck.CurrentOrder.UnpaidSum-a+newsum >= limitsum then
 
begin
 
// Delete discount, if a sum changed
 
for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do
 
begin
 
it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);
 
if (it.Code = DiscCode) then
 
begin
 
if abs(TDiscountItem(it).CalcAmount) = a then a := 0
 
else begin
 
RKCheck.DeleteCheckItem(it);
 
end;
 
break;
 
end;
 
end;
 
// Create discount to a dish
 
if a > 0 then
 
begin
 
CheckView.GotoItem(TObject(d));
 
RKCheck.CreateCheckItem(rkrefDiscounts, IntToStr(DiscCode), FloatToStr(a));
 
end;
 
end
 
else
 
begin
 
// Delete discount, if a sum changed
 
for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do
 
begin
 
it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);
 
if (it.Code = DiscCode) then
 
begin
 
RKCheck.DeleteCheckItem(it);
 
break;
 
end;
 
end;
 
end;
 
end;
 
finally
 
SL.Free();
 
if CurItem <> Nil then CheckView.GotoItem(CurItem);
 
end;
 
RKCheck.CurrentOrder.Recalc();
 
end;

Creating a special offer "Children's Birthdays: 10% Discount + Free pizza"

Mission: it is required to arrange a special offer Task: To arrange the "Children's Birthdays: 10% Discount + Free pizza" special offer.

To do so, you should set a 100% discount on the ' pizza ' category comprising two pizza types, Home Style Pizza and Children's Pizza. If an order contains two pizzas of items from the ' pizza ' category, the 100% discount is applied only to the first one and the second one has the 10% discount.

Solution: Create a script for the Special Offer selector:

Code Block
procedure ProcessOperation1002452(Parameter: integer);

...



var i, j, numcateg: integer;

...



DiscCode: integer;

...



it, CurItem: TCheckItem;

...



SL: TStringList;

...



a, q, Price: double;

...



d: TDish;

...



CheckView: TCheckView;

...



Categ: TClassificatorGroup;

...



skip: boolean;

...



begin

...



CheckView := TCheckView(GUI.FindComponentByName('CheckView'));

...



if CheckView = Nil then Exit;

...



CurItem := RKCheck.CurrentCheckItem;

...



SL := TStringList.Create;

...



try

...



// Create list of the dishes, sorted by price

...



SL.Sorted := False;

...



DiscCode := 12; // the changeable fixed amount discount on a dish

...



numcateg := 8; // category code for discount

...



for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do

...



begin

...



it := RKCheck.CurrentOrder.Sessions.Lines[i];

...



Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', numcateg));

...



if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then //Check dish lines only

...



if Categ.IsChild(it.RefItem) then //Check category of the dish

...



if ((it.State = disOpened) or (it.State = disPrinted)) then

...



if TDish(it).Quantity > 0 then

...



begin

...



if SL.Count<2 then

...



begin

...



if (TDish(it).Quantity = 0) or (TDish(it).PRListSum = 0) then Price := TDish(it).Price

...



else Price := TDish(it).PRListSum/TDish(it).Quantity;

...



SL.AddObject(FormatFloat('00000000.00', Price) + IntToStr(TDish(it).UNI), TObject(it));

...



end;

...



end;

...



end;

...




q:=0;

...



for i:= 0 to SL.Count - 1 do

...



begin

...



a:= 0;

...



d:= TDish(SL.Objects[i]);

...



q:= d.Quantity;

...



if (d.Quantity = 0) or (d.PRListSum = 0) then Price := d.Price

...



else Price := d.PRListSum/d.Quantity;

...



if i=0 then

...



a:= a + Price; // discount 100 %

...



if i=1 then

...



a:= a + Price*0.1; // discount 10 %

...

begin




begin

// Delete discount if the sum changed

...



for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do

...



begin

...



it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);

...



if (it.Code = DiscCode) then

...



begin

...



if abs(TDiscountItem(it).CalcAmount) = a then a := 0

...



else begin

...



RKCheck.DeleteCheckItem(it);

...



end;

...



break;

...



end;

...



end;

...



// Create discount to a dish

...



if a > 0 then

...



begin

...



CheckView.GotoItem(TObject(d));

...



RKCheck.CreateCheckItem(rkrefDiscounts, IntToStr(DiscCode), FloatToStr(a));

...



end;

...



end;

...



end;

...



finally

...



SL.Free();

...



if CurItem <> Nil then CheckView.GotoItem(CurItem);

...



end;

...



RKCheck.CurrentOrder.Recalc();

...



end;


Note

The dish

...

must have the property Adding to the Order – Separate Line for Each Serving.


The script for automatically applying a 10% discount if another category dish in the order has the 100% discount:

Code Block
procedure DiscountUsage1002444(UsageParameters: TDiscountUsageParameters);

...



var i,j,cntDiscount, DiscountCode: integer;

...



it,it2: TCheckItem;

...



Categ: TClassificatorGroup;

...



begin

...



dbg.dbgprint('script_disc');

...



// if not RKCheck.Valid then exit;

...



DiscountCode := 12; // code of the discount "100% on a dish"

...



cntDiscount := 0;

...



Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', 8)); // category code

...



for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do

...



begin

...



it := RKCheck.CurrentOrder.Sessions.Lines[i];

...



if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then

...



if TDish(it).Quantity > 0 then

...



if Categ.IsChild(it.RefItem) then //Check category of the dish

...



Begin

...



dbg.dbgprint('script_disc 1_');

...



dbg.dbgprint('cnt = '+inttostr(RKCheck.CheckItemCount(TObject(TDish(it).Discounts))));

...



for j := RKCheck.CheckItemCount(TObject(TDish(it).Discounts)) - 1 downto 0 do

...



begin

...



it2 := RKCheck.CheckItemByNumber(TObject(TDish(it).Discounts), j);

...



if (it2.Code = DiscountCode) then

...



// if abs(TDiscountItem(it2).SrcAmount)>0 then

...



begin

...



dbg.dbgprint('script_disc 2');

...



cntDiscount := cntDiscount + 1;

...



break;

...



end;

...



end;

...



End;

...



end;

...



dbg.dbgprint('cntDiscount = '+inttostr(cntDiscount));

...



if cntDiscount>0 then

...



UsageParameters.UsageMode := umAuto

...



else

...



UsageParameters.UsageMode := umDeny;

...



end;

...

Creating a Happy Receipt

MissionTask: To create a script for a ' happy receipt ' limited by1) the

  1. The minimal receipt amount

...

...

  1. The total possible number of receipts. The number of receipts depends on the revenue amount at a given moment, i. e. if the revenue is, for example, 50 000 rubles, the maximum number of happy receipts should be five.

Solution:1)

  1. Create a print layout in the user reports

...

  1. and a print

...

  1. view for this layout
    Image Added
  2. In the Options > User Interface > Forms, add the TReportPanel component to the

...

  1. cash form in the Form editor:

...

  1. Image Added
  2. Specify the previously created print layout in the

...

  1. Behavior

...

  1. > Document

...

  1. property

...

  1. Enter the script:

    Code Block
    procedure ProcessOperation1001035(Parameter: integer);

...

  1. 
    
    var t1, t2: TdateTime;

...

  1. 
    
    i,QntHO, MaxQntHappyOrd, DiscCode, DiscId: integer;

...

  1. 
    
    it: TCheckItem;

...

  1. 
    
    a,b,MinOrderSum,MaxOrderSum, KasSum: double;

...

  1. 
    
    c: TVisualComponent;

...

  1. 
    
    str: string;

...

  1. 
    
    begin

...

  1. 
    
    DiscCode := 5; // code discount

...

  1. 
    
    DiscId := 1001029; // id discount

...

  1. 
    
    KasSum := 0;

...

  1. 
    
    c := gui.FindComponentByName('UserReportPanel1');

...

  1. 
    
    str := TReportPanel(TObject(c)).Text;

...

  1. 
    
    // dbg.dbgprint('str = '+str);

...

  1. 
    
    i:=pos('revenue=',str);

...

  1. 
    
    if i>0 then

...

  1. 
    
    begin

...

  1. 
    
    KasSum := StrToFloat(copy(str,i+8,length(str)-(i+8)));

...

  1. 
    
    //dbg.dbgprint('KasSum = '+FloatToStr(KasSum));

...

  1. 
    
    end;

...

  1. 
    
    
    t1:=StrToTime('10:01:00'); // start lottery

...

  1. 
    
    t2:=StrToTime('23:59:00'); // end lottery

...

  1. 
    
    MaxOrderSum := 15000; // max sum of order the maximum order amount eligible for a happy receipt

...

  1. 
    
    MinOrderSum := 1; // min sum of order the minimum order amount eligible for a happy receipt

...

  1. 
    
    MaxQntHappyOrd := trunc(KasSum / 10); // quantity of happy ordets at shift

...

  1. 
    
    
    //dbg.dbgprint('QntHO = '+FloatToStr(QntHO));

...

  1. 
    
    //dbg.dbgprint('MaxQntHappyOrd = '+FloatToStr(MaxQntHappyOrd));

...

  1. 
    
    QntHO:=RKCheck.GetDiscountCount(DiscId, 0, ''); // id discount

...

  1. 
    
    if QntHO<MaxQntHappyOrd then

...

  1. 
    
    if (t1<=Time)and(Time<=t2) then

...

  1. 
    
    begin

...

  1. 
    
    // calc sum of order START

...

  1. 
    
    for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin

...

  1. 
    
    it := RKCheck.CurrentOrder.Sessions.Lines[i];

...

  1. 
    
    if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then

...

  1. 
    
    a := a + TDish(it).PRListSum

...

  1. 
    
    else if SYS.ObjectInheritsFrom(TObject(it), 'TChargeLine') then

...

  1. 
    
    a := a + TChargeLine(it).CalcAmount;

...

  1. 
    
    // if it.CODE in [5502, 1003] then

...

  1. 
    
    // b := b + TDish(it).PRListSum;

...

  1. 
    
    end;

...

  1. 
    
    // calc sum of order END

...

  1. 
    
    // dbg.dbgprint('a = '+floattostr(a));

...

  1. 
    
    // dbg.dbgprint('random(100) = '+floattostr(random(100)));

...

  1. 
    
    if a>MinOrderSum then // check condition of minimum ordersum

...

  1. 
    
    if a<MaxOrderSum then // check condition of maximum ordersum

...

  1. 
    
    begin

...

  1. 
    
    if (random(100)>1) then // set the probability of drawing a happy receipt here: 1 is the maximum probability; 99 is the minimum probability

...

  1. 
    
    begin

...

  1. 
    
    RKCheck.CreateCheckItem(rkrefDiscounts, IntToStr(DiscCode), FloatToStr(100)); // add discount indicate the discount amount instead of 100

...

  1. 
    
    // dbg.dbgprint('Congratulations!!! Happy Order!!! var1');

...

  1. 
    
    gui.ShowMessage('Congratulations!!! Happy Order!!!'); // RkCheck.GetDiscountCount

...

  1. 
    
    end

...

  1. 
    
    else if (QntHO=0) and (StrToInt(FormatDateTime('n',t2-Time))<=10) then // lottery at last time(minutes) when no winners

...

  1. 
    
    begin

...

  1. 
    
    if (random(100)>1) then // set the probability of drawing a happy receipt here: 1 is the maximum probability; 99 is the minimum probability

...

  1. 
    
    begin

...

  1. 
    
    RKCheck.CreateCheckItem(rkrefDiscounts, IntToStr(DiscCode), FloatToStr(100)); // add discount indicate the discount amount instead of 100

...

  1. 
    
    // dbg.dbgprint('Congratulations!!! Happy Order!!! var2');

...

  1. 
    
    gui.ShowMessage('Congratulations!!! Happy Order!!!'); // RkCheck.GetDiscountCount

...

  1. 
    
    end;

...

  1. 
    
    end;

...

  1. 
    
    end;

...

  1. 
    
    end;

...

  1. 
    
    RK7.PostOperation(rkoBalanceReceipt,0);

...

  1. 
    
    end;


Adding a Dish to the Order When

...

Switching to the Payment Mode

MissionTask: To create a script adding a dish to the order at moment of switching to the payment mode. The process is should be as follows: in the Fast Receipt mode, the system checks the order amount once the Order Payment button is pressed. If the order amount is more than or equal to a certain specified amount, the system displays a message with Yes and No buttons.

If Yes is clicked, the system adds a dish having the NNN code to the order and switches to the payment mode.

If No is clicked, the system switches right away to the payment mode right away.

Solution: Instead of the standard oneselector, add the Payment user selector to the fast receipt. Bind the following user operation script to this selector:

Code Block
procedure ProcessOperation1001304(Parameter: integer);

...



begin

...



if not RKCheck.Valid then

...



exit //important checking

...



else

...



begin

...



if RKCheck.CurrentOrder.UnpaidSum >= 300 then // Order sum checking

...



if GUI.RKMessageDlg('Do You want add bonus dish?', 0, 3, 10000) = 6 then

...



RKCheck.CreateCheckItem(rkrefMenuItems, IntToStr(39), '1'); // add dish with code 39

...



end;

...



RK7.PostOperation(rkoBalanceReceipt, 0);

...



end;

In this script, change 300 to the required amount and replace the 39 code 39 of the added dish with a relevant value.

Dish Locking

Mission: It is required to Task: To replace the standard Dishes selector so that when a dish code is entered and this selector is pressed, some dishes get locked.

Solution:

Code Block
procedure ProcessOperation1038483(Parameter: integer);

...


var ed: TObject;

...



begin

...



if not RKCheck.Valid then

...



exit //important checking

...



else

...



begin

...



ed := TObject(gui.FindComponentByName('Editor'));

...



if SYS.ObjectInheritsFrom(TObject(ed), 'TNumEditor') then

...



if (Pos('1001',TNumEditor(ed).Text)>0)

...



or (Pos('1002',TNumEditor(ed).Text)>0)

...



then

...



gui.showmessage('Zapreshennij simvol!!!')

...



else

...



RK7.PerformOperation(rkoCreateDish, StrToInt(TNumEditor(ed).Text));

...



end;

...



end;


Statuses

Code Block
TDrawItemState = (disNone, disOpened, disLocked, disFixed, disPrinted, disPartClosed, disClosed, disDeleted);

How to Get the Parent of a Combo Element Parent in the Script

Take the ComboDishUNI property from of a dish and find a dish having that UNI.

In Rr_Keeper 7.5.5.035 this can be done as follows:

Code Block
RKCheck.CurrentOrder.Sessions.FindByUNI(TDish(it).ComboDishUNI).

Older versions don't have the FindByUNI function so to find the dish having the required UNI you have to search through all the dishes in the order.

Code Block
If ((TDish(it).Quantity <> 0) and (TDish(it).IsComboComp)) then //and (Categ5.IsChild(it.RefItem)))

...


begin

...



for j := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin

...



it2 := RKCheck.CurrentOrder.Sessions.Lines[j];

...



if SYS.ObjectInheritsFrom(TObject(it2), 'TDish') then

...



begin

...



If ((TDish(it).ComboDishUNI = TDish(it2).UNI) and (Categ5.IsChild(it2.RefItem))) then

...



begin

...



end;

...



end;

...



end;

...



//TDish(it).ComboDishUNI

...



end;

Adding a Modifier to All Dishes in the Order

MissionTask: To write a script for the selector to add a modifier to all dishes in the order.

Solution:

Code Block
procedure ProcessOperation1002489(Parameter: integer);

...


var i,j,CntModif:integer;

...



it, CurItem: TCheckItem;

...



CheckView: TCheckView;

...



begin

...



CheckView := TCheckView(GUI.FindComponentByName('CheckView'));

...



if CheckView = Nil then Exit;

...



CurItem := RKCheck.CurrentCheckItem;

...



if Parameter > 0 then

...



try

...



RK7.PerformOperation(rkoHome, 0);

...



while True do begin

...



it := RKCheck.CurrentCheckItem;

...



if TObject(it) = Nil then break;

...



if SYS.ObjectInheritsFrom(TObject(it), 'TPrintCheckItem') then break;

...



if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then

...



begin

...



CntModif := 0;

...



for j := 0 to TDish(it).Modifiers.Count - 1 do // checking by modifier

...



begin

...



if (TDish(it).Modifiers.Items[j].Code=Parameter) then

...



CntModif := CntModif + 1;

...



end;

...



if CntModif = 0 then

...



RKCheck.CreateCheckItem(rkrefModifiers, IntToStr(Parameter), '1'); // add modificator

...



end;

...



RK7.PerformOperation(rkoDown, 0);

...



end;

...

finally

...




finally

if CurItem <> Nil then CheckView.GotoItem(CurItem);

...



end;

...



end;

Assign the user operation with the above-mentioned script to selectors and be sure to indicate the code of a relevant modifier in the

...

Parameter for Empty

...

and

...

Parameter

...

properties.

Adding a

...

New Dish to the

...

Order by

...

Pressing the Saved Dish Line and the Quantity

...

Button

MissionTask: When a saved dish item is selected and the Quantity button is pressed, it is required to add a new item to the bottom of the item list. ( This function was available in R-r_keeper _ 6). When the saved dish item is pressed now, the Quantity button is disabled.

Solution:

  1. Add a script to the operation scripts.
  2. Assign the script to the specific user operation.
  3. Bind the operation to a function button and assign the button to a new selector.

Script:

Code Block
procedure ProcessOperation1001322(Parameter: integer);

...


var i, code: integer;

...



CurItem: TCheckItem;

...



begin

...



if not RKCheck.Valid then

...



exit //important checking

...



else

...



begin

...



CurItem := RKCheck.CurrentCheckItem;

...



if SYS.ObjectInheritsFrom(TObject(CurItem), 'TDish') then

...



begin

...



code := CurItem.code;

...



RKCheck.CreateCheckItem(rkrefMenuItems, IntToStr(code), '1'); // add dish with code 39

...



end;

...



end;

...



end;

Adding the Quantity Button with the

...

"Plus One Serving of a Saved Dish

...

" Function

MissionTaskto merge the functions of the buttons Quantity and Plus One Serving of a Saved Dish (additional order) ?buttons 

Solution:

Code Block
procedure ProcessOperation1001322(Parameter: integer);

...



var i, code: integer;

...



CurItem: TCheckItem;

...



ed: TObject;

...



begin

...



if not RKCheck.Valid then

...



exit //important checking

...



else

...



begin

...



CurItem := RKCheck.CurrentCheckItem;

...



if SYS.ObjectInheritsFrom(TObject(CurItem), 'TDish') then

...



begin

...



ed := TObject(gui.FindComponentByName('Editor'));

...



if (TNumEditor(ed).Text='') then

...



begin

...



code := CurItem.code;

...



RKCheck.CreateCheckItem(rkrefMenuItems, IntToStr(code), '1'); // add dish with code

...



end

...



else

...



begin

...



RK7.PerformOperation(rkoEditAmount, 0);

...



end;

...



end;

...



end;

...



end;

Quick Payment in Rubles in

...

r_

...

keeper 7

MissionTask: when the buttons Pay in Rubles or Pay Pay buttons are pressed in the quick receipt mode, the cash payment window should open skipping the payment type selection.

Solution:

Code Block
procedure ProcessOperation1002215(Parameter: integer);

...



begin

...



if not RKCheck.Valid then

...



exit //important checking

...



else

...



begin

...



RK7.PerformRefObject(RK7.FindItemByCode(rkrefCurrencies, 1)); // 1 - currency code

...



end;

...



end;

Checking the Visit Prepayment Balance

Mission: A restaurant operates restaurant operates in the entry card mode via the MSR algorithm. A script is required that can display the visit prepayment balance.

Solution:

Code Block
procedure ProcessOperation1001537(Parameter: integer);

...



var i: integer;

...



Limit: double;

...



CardCode: string;

...



McrPay: TMcrPay;

...



begin

...



if TObject(RKCheck.CurrentOrder) = Nil then Exit;

...




// Limit calculation

...



Limit := 0;

...



CardCode := '';

...



for i := 0 to RKCheck.CurrentOrder.Sessions.McrPays.ItemCount - 1 do begin

...



McrPay := TMcrPay(RKCheck.CurrentOrder.Sessions.McrPays.Items[i]);

...



Limit := Limit + McrPay.MaxAmount;

...



CardCode := McrPay.CardNum;

...



end;

...



if CardCode = '' then Exit

...



else

...



gui.Showmessage('Card '+CardCode+' balance '+FloatToStr(Limit)+' р.');

...



end;

Limiting the 100% Category Discount

Mission: The 100% discount should apply only to one dish item belonging to the category.

Solution:

Code Block
procedure ProcessOperation1001621(Parameter: integer);

...



var i, j, numcateg: integer;

...



DiscCode: integer;

...



it, CurItem: TCheckItem;

...



SL: TStringList;

...



a, q, Price: double;

...



d: TDish;

...



CheckView: TCheckView;

...



Categ: TClassificatorGroup;

...



skip: boolean;

...



begin

...



CheckView := TCheckView(GUI.FindComponentByName('CheckView'));

...



if CheckView = Nil then Exit;

...



CurItem := RKCheck.CurrentCheckItem;

...



SL := TStringList.Create;

...



try

...



// Create list of the dishes, sorted by price

...



SL.Sorted := True;

...



DiscCode := 11;

...



numcateg := 8; //5 - category code

...



for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do

...



begin

...



it := RKCheck.CurrentOrder.Sessions.Lines[i];

...



Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', numcateg)); //5 - category code

...



if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then //Check dish lines only

...



if Categ.IsChild(it.RefItem) then //Check category of the dish

...



// if (it.RefItem.MainParent.code =11 ) then // if dish from category of menu and have same code

...



if ((it.State = disOpened) or (it.State = disPrinted)) then

...



begin

...



skip := false;

...



for j:=0 to SL.Count - 1 do

...



begin

...



d:= TDish(SL.Objects[j]);

...



if d.code=it.code then

...



Skip := True;

...



end;

...



if not(skip) then

...



begin

...



if (TDish(it).Quantity = 0) or (TDish(it).PRListSum = 0) then Price := TDish(it).Price

...



else Price := TDish(it).PRListSum/TDish(it).Quantity;

...



SL.AddObject(FormatFloat('00000000.00', Price) + IntToStr(TDish(it).UNI), TObject(it));

...



end;

...



end;

...



end;

...




//Magic

...



q:=0;

...



for i:= 0 to SL.Count - 1 do

...



begin

...



a:= 0;

...



d:= TDish(SL.Objects[i]);

...



q:= d.Quantity;

...



if (d.Quantity = 0) or (d.PRListSum = 0) then Price := d.Price

...



else Price := d.PRListSum/d.Quantity;

...



a:= a + Price;

...




// Delete discount if the sum changed

...



for j := RKCheck.CheckItemCount(TObject(d.Discounts)) - 1 downto 0 do

...



begin

...



it := RKCheck.CheckItemByNumber(TObject(d.Discounts), j);

...



if (it.Code = DiscCode) then

...



begin

...



if abs(TDiscountItem(it).SrcAmount) = a then a := 0

...



else RKCheck.DeleteCheckItem(it);

...



break;

...



end;

...



end;

...




// Create discount to a dish

...



if a > 0 then

...



begin

...



CheckView.GotoItem(TObject(d));

...



RKCheck.CreateCheckItem(rkrefDiscounts, IntToStr(DiscCode), FloatToStr(a));

...



end;

...



end;

...



finally

...



SL.Free();

...



if CurItem <> Nil then CheckView.GotoItem(CurItem);

...



end;

...



RKCheck.CurrentOrder.Recalc();

...



end;

Opening the Browser

...

Window for Displaying

...

Cash Operation Reports

Mission: It is required to Task: To create a function button in the main POS menu that when pressed cash menu, pressing which will execute the command: fsWeb.exe "https://172.22.4.57:8088/csthtm/overall1.html", where 172.22.4.57 is the value of an extended restaurant property

Solution:

Code Block
procedure ProcessOperation1001763(Parameter: integer);

...



var s: string;

...



begin

...



// TRK7Restaurant(RK7.CashGroup.MainParent).genMessage_Addon_49='1'

...



s := TRK7Restaurant(RK7.CashGroup.MainParent).genTEL;

...



GUI.CmdExec('fsWeb.exe "https://'+s+':8088/csthtm/overall1.html"');

...



end;

Assign the script to the user operation that, in its turn, should be assigned to a function button.

Adding a Dish to the Order

MissionTask: After swiping a discount card, a discount , and a gift (a dish having with a certain specified code ) should be awarded to the customer card.

The process is should be as follows:

  1. Creating a button in the interface
  2. Once this button is pressed, a customer enters a promo code
  3. This promo code is read as the card code, there is a corresponding MCR algorithm written for it.
  4. FarCards is called, a discount and a free dish are received. It can be inicated indicated in some field.
  5. This dish is added to a table and the discount is applied to it.

Solution:
1) create

  1. Create the script:

...

  1. Code Block
    procedure ProcessOperation1001765(Parameter:

...

  1.  integer);

...

var ed: TObject;

DeviceID : integer;

begin

if not RKCheck.Valid then

exit //important checking

else

begin

DeviceID := 0; // PDS interface identifier

ed := TObject(gui.

 

...

  1. 
     
    var ed: TObject;
     
    DeviceID : integer;
     
    begin
     
    if not RKCheck.Valid then
     
    exit //important checking
     
    else
     
    begin
     
    DeviceID := 0; // PDS interface ID
     
    ed := TObject(gui.FindComponentByName('Editor'));
     
    if SYS.ObjectInheritsFrom(TObject(ed), 'TNumEditor') then
     
    if (Pos('1001',TNumEditor(ed).Text)>0)
     
    or (Pos('1002',TNumEditor(ed).Text)>0)
     
    then
     
    gui.showmessage('nevernii promokod!!!')
     
    else
     
    RK7.PerformMCRAlgorith('8989='+TNumEditor(ed).Text, DeviceID);
     
    //RK7.PerformOperation(rkoCreateDish, StrToInt(TNumEditor(ed).Text));
     
    end;
     
    end;


  2. In the input field of the cash terminal, a promotional code is entered. In our example, it is 1001 or 1002. If the entered promotional code matches the one stored in the script, the MCR script is called.

    The MCR script needs to be created with the following properties:

    • Main > Area: Discount

    • Main > Object: Discount Used

    • General > Device Types > Script: enabled.

      Code Block
      function MCR1001146(DeviceSignal: Integer; DeviceIdent: Integer; var Parameter: String): Boolean;
       
      var RestCode: integer;
       
      begin
       
      Result := False;
       
      if pos('8989=', Parameter) = 1 then begin
       
      RKCheck.CreateCheckItem(rkrefMenuItems, IntToStr(43), '1'); // adding the dish with code 43 to the order
       
      Result := True;
       
      end;
       
      end;


Checking the number of dishes from a certain category

Task: to create a script to check the number of dishes from a certain category.

Solution:

Code Block
procedure ProcessOperation1001742(Parameter: integer);
 
var i, CategCode: integer;
 
it: TCheckItem;
 
iQnt : double;
 
Categ: TClassificatorGroup;
 
CurSession: TOrderSession;
 
begin
 
if (not RKCheck.Valid) then
 
exit;
 
else begin
 
CategCode := 8; //category code
 
iQnt := 0;
 
Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode));//category code
 
if SYS.ObjectInheritsFrom(TObject(RKCheck.CurrentCheckItem), 'TDish') then
 
CurSession := TDish(RKCheck.CurrentCheckItem).Session;
 
for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do
 
begin
 
it := RKCheck.CurrentOrder.Sessions.Lines[i];
 
if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then
 
begin
 
if CurSession = TDish(it).Session then
 
if (Categ.IsChild(it.RefItem)) then
 
iQnt := iQnt + Trunc(TDish(it).Quantity);
 
end;
 
end;
 
//RKCheck.CurrentOrder.Visit.GuestCnt
 
if (iQnt < 4) then
 
begin
 
GUI.Showmessage('Chua du? diê`u kiê?n a´p du?ng: ' + FloatToStr(iQnt));
 
Exit;
 
end;
 
end;
 
end;

Creating Additional Reports When Closing a Shift

Task: to create a script to automatically generate additional reports when a shift is closed.

Solution:

Code Block
procedure ProcessOperation1001784(Parameter: integer);
 
begin
 
RK7.PerformRefObject( RK7.FindItemByCode(rkrefMaketSchemeDetails, 184) ); // document view code in the printing schemes
 
RK7.PerformOperation(rkoMMCloseCommonShift, 0); // common shift closing
 
end;

Forbidding to Cancel the Bill in One Order More Than X Times

Task: It is necessary to forbid canceling the guest bill in one order more than X times, specified in the parameter.

-1 (default)  — allowed to cancel unlimited number of times

0 — it is forbidden to cancel the guest bill at all

1...999 — indicates how many times you can cancel the guest bill in an order/visit

Order >> print pre-check >> cancel pre-check >> print pre-check again >> can not cancel pre-check (system warning and must not allow).

The superuser can always cancel receipts without paying attention to this parameter.

Solution:

  1. Create the MaxDelBillCnt extended property of the integer type and assign it to the restaurant
  2. In the properties of the restaurant, specify a value for this property
  3. Create a script:
Code Block
procedure ProcessOperation1002346(Parameter: integer);
 
var i, CntDelBill, MaxDelBillCnt: integer;
 
it: TCheckItem;
 
begin
 
CntDelBill := 0;
 
MaxDelBillCnt := -1;
 
// if ( TRK7Restaurant(RK7.CashGroup.MainParent).genMaxDelBillCnt=1) then
 
MaxDelBillCnt := TRK7Restaurant(RK7.CashGroup.MainParent).genMaxDelBillCnt;
 
 
if MaxDelBillCnt = -1 then
 
RK7.PerformOperation(RkoUnlockBill,0);
 
 
if MaxDelBillCnt = 0 then
 
begin
 
gui.showmessage('Cancel bill forbidden!');
 
Exit;
 
end;
 
 
if MaxDelBillCnt > 0 then
 
begin
 
for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin
 
it := RKCheck.CurrentOrder.Sessions.Lines[i];
 
if SYS.ObjectInheritsFrom(TObject(it), 'tPrintCheckItem') then
 
if tPrintCheckItem(it).IsBill then
 
if tPrintCheckItem(it).Deleted then
 
CntDelBill := CntDelBill + 1;
 
end;
 
if CntDelBill >= MaxDelBillCnt then
 
begin
 
if RK7.PerformOperation(rkoUser15, 0)=1 then
 
RK7.PerformOperation(RkoUnlockBill,0)
 
else
 
gui.showmessage('Cancel bill forbidden!');
 
end
 
else
 
RK7.PerformOperation(RkoUnlockBill,0);
 
end;
 
dbg.dbgprint('CntDelBill = ' + IntToStr(CntDelBill));
 
dbg.dbgprint('MaxDelBillCnt = ' + IntToStr(MaxDelBillCnt));
 
end;

Assign an empty script to user operation 15:

Code Block
procedure ProcessOperation1001624(Parameter: integer);
 
begin
 
 
end;

Enable the access control for this operation. Give the superuser the right for the operation.

Using Different Price Types

Task: when selling dishes at the cash register to a regular customer, not authorized at the cash register with a card, the price should be Price Type No. 1. When selling dishes to a restaurant customer, authorized with a card at the cash register, the price should be Price Type No. 2.

Solution:

Code Block
procedure ProcessOperation1001986(Parameter: integer);
 
var Props: TVisitOrderInfo;
 
begin
 
Props := TVisitOrderInfo.Create();
 
try
 
Props.OrderCategoryID := 10033; // specify the order category ID
 
RKCheck.UpdateOrderProps(Props);
 
finally
 
Props.Free;
 
end;
 
end;


Note

For version r_keeper 7.5.4.x, enable the Change order category after creation option.

Changing the Main Waiter

Task: to create a script to change the main waiter.

Solution:

Code Block
procedure ProcessOperation1000813(Parameter: integer);
 
var Props: TVisitOrderInfo;
 
begin
 
Props := TVisitOrderInfo.Create;
 
try
 
Props.MainWaiterID := RK7.FindItemByCode(rkrefEmployees, 21).Ident;
 
RKCheck.UpdateOrderProps(Props);
 
finally
 
Props.Free;
 
end;
 
end;

Changing the Price Type by Setting the Order of Serving Dishes

Task: to create a script that sets serving order No. 1 for dishes of a specified category, and serving order No. 2 for all other dishes.

Solution:

Code Block
procedure ProcessOperation1002417(Parameter: integer);
 
var CategCode, course1, course2: integer;
 
Categ: TClassificatorGroup;
 
it: TCheckItem;
 
begin
 
if not RKCheck.Valid then
 
exit //important checking
 
else
 
begin
 
CategCodeList := TStringList.Create;
 
//********** Set parameters ***********//
 
CategCode := 27; // code of category 1
 
course1 := 1002378; // serving order 1 ID
 
course2 := 1002379; // serving order 2 ID
 
//********** Set parameters ***********//
 
Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode));//category code
 
 
while True do begin
 
it := RKCheck.CurrentCheckItem;
 
if TObject(it) = Nil then break;
 
if SYS.ObjectInheritsFrom(TObject(it), 'TPrintCheckItem') then break;
 
if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then
 
if (Categ.IsChild(TDish(it).RefItem)) then // checking category of dish
 
// if TRK7MenuItem(RK7.FindItemBySifr(rkrefMenuItems, TDish(it).Sifr)).genAstor_code = '1' then // check ext property
 
RK7.PerformOperation(rkoMoveCurrentDishToSes, course1); // ident of course
 
else
 
RK7.PerformOperation(rkoMoveCurrentDishToSes, course2); // ident of course;
 
RK7.PerformOperation(rkoDown, 0);
 
end;
 
 
end;
 
end;

Changing the Amount Discount

Task: The discount is tied to the card and works for orders with delivery. Every tenth order should receive a discount of 500 rubles, provided that the average receipt for these 10 orders was at least 500 rubles.

Solution:

Code Block
procedure ProcessOperation1001902(Parameter: integer);
 
var ed: TObject;
 
it: TCheckItem;
 
begin
 
RK7.PerformOperation(rkoHome, 0);
 
while True do begin
 
it := RKCheck.CurrentCheckItem;
 
if TObject(it) = Nil then break;
 
if SYS.ObjectInheritsFrom(TObject(it), 'TPrintCheckItem') then break;
 
if SYS.ObjectInheritsFrom(TObject(it), 'TDiscountItem') then
 
if TDiscountItem(it).Code = 14 then // specify the discount code
 
if (it.State = disOpened) then // checking the unsaved status of the discount
 
begin
 
ed := TObject(gui.FindComponentByName('Editor'));
 
if SYS.ObjectInheritsFrom(TObject(ed), 'TNumEditor') then
 
begin
 
TNumEditor(ed).Text := IntToStr(trunc(100));
 
RK7.PerformOperation(rkoEditOpenPrice, 0);
 
end;
 
TNumEditor(ed).Text := '';
 
end;
 
RK7.PerformOperation(rkoDown, 0);
 
end;
 
end;

Change the Combo or Dish Size When Pressing a Button

Task: To write a script and make buttons, when pressing which the dish size will change.

Solution:

A script for enlarging the size:

Code Block
procedure ProcessOperation1002094(Parameter: integer);
 
var NextCateg,Categ1,Categ2, Classif1,Classif2: TClassificatorGroup;
 
it, CurItem: TCheckItem;
 
cv: TObject;
 
mi_d,mi_s: trk7menuitem;
 
ex,i,j,MinSize,MaxSize,ClassifCode1,ClassifCode2,CurSize,NextSize,NextCategCode: integer;
 
begin
 
if not RKCheck.Valid then
 
exit //important checking
 
else
 
begin
 
MinSize := 1;
 
MaxSize := 3;
 
CurItem := RKCheck.CurrentCheckItem;
 
ClassifCode1 := 16; // code classificator of dish type
 
ClassifCode2 := 9; // code classificator of dish size
 
 
if SYS.ObjectInheritsFrom(TObject(CurItem), 'TDish') then // if current item is dish
 
if not TDish(CurItem).IsComboComp then // comment this line if need allow change size for combo-components
 
begin
 
// dbg.dbgprint('dish type');
 
Classif1 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', ClassifCode1));
 
// dbg.dbgprint(inttoStr(Classif1.ChildCount));
 
for i := 0 to Classif1.ChildCount - 1 do begin
 
Categ1 := TClassificatorGroup(Classif1.ChildItem(i));
 
if Categ1.IsChild(CurItem.RefItem) then begin
 
// dbg.dbgprint('Classif1.code='+IntToStr(Classif1.code)+' Categ1.code='+IntToStr(Categ1.code));
 
break;
 
end;
 
end;
 
 
// dbg.dbgprint('dish size');
 
Classif2 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', ClassifCode2));
 
// dbg.dbgprint(inttoStr(Classif2.ChildCount));
 
for i := 0 to Classif2.ChildCount - 1 do begin
 
Categ2 := TClassificatorGroup(Classif2.ChildItem(i));
 
if Categ2.IsChild(CurItem.RefItem) then begin
 
CurSize := Categ2.SortOrder;
 
// dbg.dbgprint('Classif2.code='+IntToStr(Classif2.code)+' Categ2.code='+IntToStr(Categ2.code)+' SortOrder='+IntToStr(Categ2.SortOrder));
 
break;
 
end;
 
end;
 
 
NextSize := CurSize + 1;
 
if NextSize > MaxSize then
 
begin
 
//************for recursy change size **************/
 
// NextSize := MinSize; // uncomment this recursion to resize
 
//************for recursy change size **************/
 
gui.showmessage('reached a maximum size dishes!'); // comment out this recursion to resize
 
exit; // comment out this recursion to resize
 
end;
 
 
// dbg.dbgprint('serch dish size');
 
Classif2 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', ClassifCode2));
 
// dbg.dbgprint(inttoStr(Classif2.ChildCount));
 
for i := 0 to Classif2.ChildCount - 1 do begin
 
Categ2 := TClassificatorGroup(Classif2.ChildItem(i));
 
if Categ2.SortOrder=NextSize then begin
 
NextCategCode := Categ2.Code;
 
NextCateg := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', NextCategCode));
 
// dbg.dbgprint('Classif2.code='+IntToStr(Classif2.code)+' Categ2.code='+IntToStr(Categ2.code)+' SortOrder='+IntToStr(Categ2.SortOrder));
 
break;
 
end;
 
end;
 
 
// dbg.dbgprint('serch dish type size');
 
ex := 0;
 
for i := 0 to Categ1.ChildCount - 1 do begin
 
mi_d := trk7menuitem(Categ1.ChildItem(i));
 
// dbg.dbgprint(inttostr(mi_d.code)+' '+mi_d.RightLangName+' '+inttostr(mi_d.extcode)+' '+inttostr(Categ1.SortOrder)+' '+(mi_d.name)+' ');
 
for j := 0 to Categ2.ChildCount - 1 do begin
 
mi_s := trk7menuitem(NextCateg.ChildItem(j));
 
if mi_d.code = mi_s.code then
 
begin
 
RKCheck.CreateCheckItem(rkrefMenuItems, IntToStr(mi_s.code), FloatToStr(TDish(CurItem).Quantity));
 
if CurItem <> Nil then
 
begin
 
cv := TObject(gui.FindComponentByName('CheckView'));
 
if SYS.ObjectInheritsFrom(TObject(cv), 'TCheckView') then
 
TCheckView(cv).GotoItem(CurItem);
 
end;
 
// dbg.dbgprint('BINGO '+inttostr(mi_s.ident)+inttostr(mi_s.code)+' '+mi_s.RightLangName+' '+inttostr(mi_s.extcode)+' '+inttostr(NextCateg.SortOrder)+' '+(mi_s.name)+' ');
 
ex := 1;
 
break;
 
end;
 
end;
 
if ex > 0 then break;
 
end;
 
 
end;
 
end;
 
end;

A script for reducing the size:

Code Block
procedure ProcessOperation1002112(Parameter: integer);
 
var NextCateg,Categ1,Categ2, Classif1,Classif2: TClassificatorGroup;
 
it, CurItem: TCheckItem;
 
cv: TObject;
 
mi_d,mi_s: trk7menuitem;
 
ex,i,j,MinSize,MaxSize,ClassifCode1,ClassifCode2,CurSize,PrevSize,NextCategCode: integer;
 
begin
 
if not RKCheck.Valid then
 
exit //important checking
 
else
 
begin
 
MinSize := 1;
 
MaxSize := 3;
 
CurItem := RKCheck.CurrentCheckItem;
 
ClassifCode1 := 16; // code classificator of dish type
 
ClassifCode2 := 9; // code classificator of dish size
 
 
if SYS.ObjectInheritsFrom(TObject(CurItem), 'TDish') then // if current item is dish
 
if not TDish(CurItem).IsComboComp then // comment this line if need allow change size for combo-components
 
begin
 
// dbg.dbgprint('dish type');
 
Classif1 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', ClassifCode1));
 
// dbg.dbgprint(inttoStr(Classif1.ChildCount));
 
for i := 0 to Classif1.ChildCount - 1 do begin
 
Categ1 := TClassificatorGroup(Classif1.ChildItem(i));
 
if Categ1.IsChild(CurItem.RefItem) then begin
 
// dbg.dbgprint('Classif1.code='+IntToStr(Classif1.code)+' Categ1.code='+IntToStr(Categ1.code));
 
break;
 
end;
 
end;
 
 
// dbg.dbgprint('dish size');
 
Classif2 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', ClassifCode2));
 
// dbg.dbgprint(inttoStr(Classif2.ChildCount));
 
for i := 0 to Classif2.ChildCount - 1 do begin
 
Categ2 := TClassificatorGroup(Classif2.ChildItem(i));
 
if Categ2.IsChild(CurItem.RefItem) then begin
 
CurSize := Categ2.SortOrder;
 
// dbg.dbgprint('Classif2.code='+IntToStr(Classif2.code)+' Categ2.code='+IntToStr(Categ2.code)+' SortOrder='+IntToStr(Categ2.SortOrder));
 
break;
 
end;
 
end;
 
 
PrevSize := CurSize - 1;
 
if PrevSize < MinSize then
 
begin
 
//************for recursy change size **************/
 
// PrevSize := MaxSize; // uncomment this recursion to resize
 
//************for recursy change size **************/
 
gui.showmessage('reached a minimum size dishes!'); // comment out this recursion to resize
 
exit; // comment out this recursion to resize
 
end;
 
 
// dbg.dbgprint('serch dish size');
 
Classif2 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', ClassifCode2));
 
// dbg.dbgprint(inttoStr(Classif2.ChildCount));
 
for i := 0 to Classif2.ChildCount - 1 do begin
 
Categ2 := TClassificatorGroup(Classif2.ChildItem(i));
 
if Categ2.SortOrder=PrevSize then begin
 
NextCategCode := Categ2.Code;
 
NextCateg := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', NextCategCode));
 
// dbg.dbgprint('Classif2.code='+IntToStr(Classif2.code)+' Categ2.code='+IntToStr(Categ2.code)+' SortOrder='+IntToStr(Categ2.SortOrder));
 
break;
 
end;
 
end;
 
 
// dbg.dbgprint('serch dish type size');
 
ex := 0;
 
for i := 0 to Categ1.ChildCount - 1 do begin
 
mi_d := trk7menuitem(Categ1.ChildItem(i));
 
// dbg.dbgprint(inttostr(mi_d.code)+' '+mi_d.RightLangName+' '+inttostr(mi_d.extcode)+' '+inttostr(Categ1.SortOrder)+' '+(mi_d.name)+' ');
 
for j := 0 to Categ2.ChildCount - 1 do begin
 
mi_s := trk7menuitem(NextCateg.ChildItem(j));
 
if mi_d.code = mi_s.code then
 
begin
 
RKCheck.CreateCheckItem(rkrefMenuItems, IntToStr(mi_s.code), FloatToStr(TDish(CurItem).Quantity));
 
if CurItem <> Nil then
 
begin
 
cv := TObject(gui.FindComponentByName('CheckView'));
 
if SYS.ObjectInheritsFrom(TObject(cv), 'TCheckView') then
 
TCheckView(cv).GotoItem(CurItem);
 
end;
 
// dbg.dbgprint('BINGO '+inttostr(mi_s.ident)+inttostr(mi_s.code)+' '+mi_s.RightLangName+' '+inttostr(mi_s.extcode)+' '+inttostr(NextCateg.SortOrder)+' '+(mi_s.name)+' ');
 
ex := 1;
 
break;
 
end;
 
end;
 
if ex > 0 then break;
 
end;
 
 
end;
 
end;
 
end;