...
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrType1Code, CntCurrType1, CntCurrTypeOther: integer; it: TCheckItem; begin CurrType1Code := 91; // code of the currency type for which to prohibit combining with other currencies if not SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then Exit; CntCurrType1 := 0; CntCurrTypeOther := 0; if TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType1Code then CntCurrType1 := CntCurrType1 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then begin if TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType1Code then CntCurrType1 := CntCurrType1 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; end; end; if (CntCurrType1 > 0) and (CntCurrTypeOther > 0) then begin AAllow := False; AMessage := 'This currency combination is prohibited!'; Exit; end; end; |
Скрипт на комбинирование фискальных и нефискальных валют с ПДС оплатами!!!!!!!!!!!!!!!!!!!!!!!!!
Необходимо чтобы безнличный расчет мог комбинироваться только с платежными картами, но ПДС-оплата не должна быть запрещена к комбинированию с другими группами.
...
A script for combining fiscal and non-fiscal currencies with PDS payments
Non-cash payments should be combined only with payment cards, but it should be allowed to combine PDS payments with other groups.
The script prohibits combining the CurrType1Code and CurrType2Code currency types with other currencies but allows to combine them with each other.
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrType1Code, CurrType2Code, CntCurrType1, CntCurrType2, CntCurrTypeOther: integer; it: TCheckItem; begin CurrType1Code := 91; // кодcode типаof валютыthe дляcurrency которогоtype запретитьfor комбинирование с другими валютамиwhich to prohibit combining with other currencies CurrType2Code := 99; // код типа валюты для которого запретить комбинирование с другими валютами code of the currency type for which to prohibit combining with other currencies if not SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then Exit; CntCurrType1 := 0; CntCurrType2 := 0; CntCurrTypeOther := 0; if TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType1Code then CntCurrType1 := CntCurrType1 + 1 else if TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType2Code then CntCurrType2 := CntCurrType2 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then begin if TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType1Code then CntCurrType1 := CntCurrType1 + 1 else if TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType2Code then CntCurrType2 := CntCurrType2 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; end; end; if ((CntCurrType1 > 0)or(CntCurrType2 > 0)) and (CntCurrTypeOther > 0) then begin AAllow := False; AMessage := 'ДаннаяThis currency комбинацияcombination валютis запрещенаprohibited!'; Exit; end; end; |
Для валюты типа №1 разрешена комбинация с валютой типа №2, но с другими - запрещенаCurrency type 1 is allowed to combine with currency type 2, but is prohibited to combine with other currencies.
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrType1Code, CurrType2Code, CntCurrType1, CntCurrType2, CntCurrTypeOther: integer; it: TCheckItem; begin CurrType1Code := 91; // код типа валюты для которого запретить комбинирование с другими валютами кроме типа валюты2 code of the currency type for which to prohibit combining with other currencies except for currency type 2 CurrType2Code := 99; // кодcurrency типаtype валютыcode if not SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then Exit; CntCurrType1 := 0; CntCurrType2 := 0; CntCurrTypeOther := 0; if TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType1Code then CntCurrType1 := CntCurrType1 + 1 else if TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType2Code then CntCurrType2 := CntCurrType2 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then begin if TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType1Code then CntCurrType1 := CntCurrType1 + 1 else if TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType2Code then CntCurrType2 := CntCurrType2 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; end; end; if (CntCurrType1 > 0) and (CntCurrTypeOther > 0) then begin AAllow := False; AMessage := 'ДаннаяThis комбинацияcurrency валютcombination запрещенаis prohibited!'; Exit; end; end; |
...
A script to combine fiscal and non-fiscal currencies
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrType1Code1,CurrType1Code2,CurrType1Code3,CurrType1Code4, CurrType2Code1,CurrType2Code2,CurrType2Code3,CurrType2Code4, CntCurrType1, CntCurrType2, CntCurrTypeOther: integer; it: TCheckItem; begin //********** Set parameters ***********// CurrType1Code1 := 91; // кодfiscal currency типаtype валютыcode фискальной CurrType1Code2 := 93; // кодfiscal currency типаtype валютыcode фискальной CurrType1Code3 := 1; // fiscal кодcurrency типаtype валютыcode фискальной CurrType1Code4 := 2; // fiscal currency кодtype типаcode валюты фискальной CurrType2Code1 := 14; // код типа валюты нефискальнойnon-fiscal currency type code CurrType2Code2 := 94; // код типа валюты нефискальнойnon-fiscal currency type code CurrType2Code3 := 13; // non-fiscal кодcurrency типаtype валютыcode нефискальной CurrType2Code4 := 24; // код типа валюты нефискальнойnon-fiscal currency type code //********** Set parameters ***********// if not SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then Exit; CntCurrType1 := 0; CntCurrType2 := 0; CntCurrTypeOther := 0; if (TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType1Code1) or(TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType1Code2) or(TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType1Code3) or(TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType1Code4) then CntCurrType1 := CntCurrType1 + 1 else if (TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType2Code1) or(TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType2Code2) or(TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType2Code3) or(TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=CurrType2Code4) then CntCurrType2 := CntCurrType2 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then if TPayLine(it).state <> disDeleted then begin // статусpayment оплатыstatus if (TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType1Code1) or(TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType1Code2) or(TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType1Code3) or(TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType1Code4) then CntCurrType1 := CntCurrType1 + 1 else if (TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType2Code1) or(TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType2Code2) or(TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType2Code3) or(TCurrencyType(TCurrency(TPayLine(it).RefItem).MainParent).Code=CurrType2Code4) then CntCurrType2 := CntCurrType2 + 1 else CntCurrTypeOther := CntCurrTypeOther + 1; end; end; if (CntCurrType1 > 0) and (CntCurrType2 > 0) then begin AAllow := False; AMessage := 'ДаннаяThis currency комбинацияcombination валютis запрещенаprohibited!'; Exit; end; end; |
Скрипт для ограничения оплат разными валютами
Скрипт запрещает смешанную оплату - нельзя оплатить счет рублями и кредиткой,
...
A script to restrict payments in different currencies
The script prohibits mixed payment - you can not pay the bill in both rubles and a credit card
or make two payments: rubles+rubles or credit card+credit card
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrCode1, CurrCode2, curr1present, curr2present: integer; it: TCheckItem; Categ: TClassificatorGroup; CategCode: integer; begin CategCode := 17; // кодcategory категорииcode CurrCode1 := 1; // currency кодcode валюты11 (рублиrubles+рублиrubles) CurrCode2 := 5: // кодcurrency code валюты22 (кредитнаяcredit картаcard+кредитнаяcredit картаcard) curr1present := 0; curr2present := 0; Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode)); if not(AEditType = etRemove) then if RKCheck.CurrentOrder.UserTag1 = 0 then if SYS.ObjectInheritsFrom(TObject(AObjectAft), 'TDish') then if Categ.IsChild(TDish(AObjectAft).RefItem) then if GUI.RKMessageDlg('ТЫ ПРОВЕРИЛ ДОКУМЕНТЫHAVE YOU CHECKED THE DOCUMENTS ?! '+#13#10+' Мы не продаём пиво Гостям родившимся позднее We do not sell beer to Guests born later than ' +FormatDateTime('dd mmmm ',Date-1)+IntToStr(StrToInt(FormatDateTime('yyyy',Date))- 18)+#13#10+' '+#13#10+'ШТРАФFINE ЗАFOR АДМИНИСТРАТИВНОЕADMINISTRATIVE ПРАВОНАРУШЕНИЕOFFENSE -IS 30 000 рубrub. СFROM THE КАССИРАCASHIER!', 0, 3, 100000) = 6 then begin RKCheck.CurrentOrder.UserTag1 := 1; // метка,label чтобыto повторноavoid неdialog открывать диалогreopening AAllow := True end else begin RK7.PostOperation(rkoDishSelector, 0); AAllow := False; end; if not SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then Exit; // Проверяем,Check что в заказе нет платежей другими валютамиthat there are no payments in other currencies in the order // (сдачу можно давать только этой же валютойchange can only be given in the same currency) for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then begin if (it.Code = CurrCode1 ) then // code of first currency (Lit) if TPayLine(it).CurrLineSum > 0 then curr1present := curr1present + 1; if (it.Code = CurrCode2 ) then // code of first currency (Lit) if TPayLine(it).CurrLineSum > 0 then curr2present := curr2present + 1; if TPayLine(it).Sifr <> TPayLine(AObjectAft).Sifr then begin AAllow := False; AMessage := 'Сдачу нужно давать той же валютой, что и основной платежThe change must be given in the same currency as the main payment'; Exit; end; end; end; // Запрещаем вносить платеж, если он меньше суммы заказа Prohibit making a payment less than the order amount if (TPayLine(AObjectAft).BasicSum > 0) and (TPayLine(AObjectAft).BasicSum < RKCheck.CurrentOrder.UnpaidSum) then begin AAllow := False; AMessage := 'You can'Нельзя платить меньше суммы заказаt pay less than the order amount'; end; // Запрет ввода более одного платежа Entering more than one payment is prohibited if curr1present > 0 then if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if (TPayLine(AObjectAft).code=CurrCode1) then // code of 1st currency if TPayLine(AObjectAft).CurrLineSum >=0 then begin AAllow := false; AMessage := 'Oplata zapreshena, т.к. уже был платёж этой валютой!Payment prohibited because there was already a payment in this currency!'; end; if curr2present > 0 then if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if (TPayLine(AObjectAft).code=CurrCode2) then // code of 2nd currency if TPayLine(AObjectAft).CurrLineSum >=0 then begin AAllow := false; AMessage := 'Oplata zapreshena, т.к. уже был платёж этой валютойPayment prohibited because there was already a payment in this currency!'; end; end; |
...
A modified script for two types of credit cards:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrCode1, CurrCode2, CurrCode2_2, curr1present, curr2present: integer; it: TCheckItem; Categ: TClassificatorGroup; CategCode: integer; begin CategCode := 17; // кодcategory категорииcode CurrCode1 := 1; // currency кодcode валюты11 (рублиrubles+рублиrubles) CurrCode2 := 5: // кодcurrency code валюты22 (кредитнаяcredit картаcard+кредитнаяcredit картаcard) CurrCode2_2 := 6; // currency кодcode валюты22 (кредитнаяcredit картаcard+кредитнаяcredit картаcard) curr1present := 0; curr2present := 0; Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode)); if not(AEditType = etRemove) then if RKCheck.CurrentOrder.UserTag1 = 0 then if SYS.ObjectInheritsFrom(TObject(AObjectAft), 'TDish') then if Categ.IsChild(TDish(AObjectAft).RefItem) then if GUI.RKMessageDlg('ТЫ ПРОВЕРИЛ ДОКУМЕНТЫHAVE YOU CHECKED THE DOCUMENTS ?! '+#13#10+' Мы не продаём пиво Гостям родившимся позднее We do not sell beer to Guests born later than ' +FormatDateTime('dd mmmm ',Date-1)+IntToStr(StrToInt(FormatDateTime('yyyy',Date))- 18)+#13#10+' '+#13#10+'ШТРАФFINE ЗАFOR АДМИНИСТРАТИВНОЕADMINISTRATIVE ПРАВОНАРУШЕНИЕOFFENSE -IS 30 000 рубrub. СFROM THE КАССИРАCASHIER!', 0, 3, 100000) = 6 then begin RKCheck.CurrentOrder.UserTag1 := 1; // метка, чтобы повторно не открывать диалогlabel to avoid dialog reopening AAllow := True end else begin RK7.PostOperation(rkoDishSelector, 0); AAllow := False; end; if not SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then Exit; // Проверяем, что в заказе нет платежей другими валютами Check that there are no payments in other currencies in the order // (сдачу можно давать только этой же валютойchange can only be given in the same currency) for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then begin if (it.Code = CurrCode1 ) then // code of first currency (Lit) if TPayLine(it).CurrLineSum > 0 then curr1present := curr1present + 1; if (it.Code = CurrCode2 ) or (it.Code = CurrCode2_2) then // code of first currency (Lit) if TPayLine(it).CurrLineSum > 0 then curr2present := curr2present + 1; if TPayLine(it).Sifr <> TPayLine(AObjectAft).Sifr then begin AAllow := False; AMessage := 'Сдачу нужно давать той же валютой, что и основной платежThe change must be given in the same currency as the main payment'; Exit; end; end; end; // Запрещаем вносить платеж, если он меньше суммы заказа prohibit making a payment less than the order amount if (TPayLine(AObjectAft).BasicSum > 0) and (TPayLine(AObjectAft).BasicSum < RKCheck.CurrentOrder.UnpaidSum) then begin AAllow := False; AMessage := 'You can'Нельзя платить меньше суммы заказаt pay less than the order amount'; end; // Запрет ввода более одного платежа Entering more than one payment is prohibited if curr1present > 0 then if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if (TPayLine(AObjectAft).code=CurrCode1) then // code of 1st currency if TPayLine(AObjectAft).CurrLineSum >=0 then begin AAllow := false; AMessage := 'Oplata zapreshena, т.к. уже был платёж этой валютой!'Payment prohibited because there was already a payment in this currency!; end; if curr2present > 0 then if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if (TPayLine(AObjectAft).code=CurrCode2) or (TPayLine(AObjectAft).code=CurrCode2_2) then // code of 2nd currency if TPayLine(AObjectAft).CurrLineSum >=0 then begin AAllow := false; AMessage := 'Oplata zapreshena, т.к. уже был платёж этой валютойPayment prohibited because there was already a payment in this currency!'; end; end; |
Скрипт на ограничение суммы платежа валютой
A script to limit the payment amount in the currency
Cashiers should not be able to enter 100% payment with loyalty pointsНеобходимо чтобы кассиры не могли ввести 100% оплаты баллами.
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrencyCode: integer; currsum: double; it: TCheckItem; begin //********** Set parameters ***********// CurrencyCode := 1; // кодcurrency валюты(бонусовbonuses) code //********** Set parameters ***********// currsum := 0; for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then if (it.Code = CurrencyCode) then currsum := currsum + TPayLine(it).NationalSum; end; if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if (TPayLine(AObjectAft).code = CurrencyCode) then if ((currsum+TPayLine(AObjectAft).NationalSum) > (RKCheck.CurrentOrder.ToPaySum-1)) then begin AAllow := false; AMessage := 'ПревышенаPayment by оплатаbonuses бонусамиis exceeded!'; end; end; |
Скрипт на ограничение на сумму оплаты по классификациям
Скрипт считает сумму блюд заданной категории и не позволяет ввести сумму валюты, превышающую данную сумму. Также проверяется ограничение на превышение максимальной суммы через задание переменной MaxCurrSum.
...
A script for limiting the amount of payment by classification
The script calculates the amount of dishes from the specified category and does not allow to enter the amount of currency that exceeds this amount. The limit on exceeding the maximum amount is also checked by setting the MaxCurrSum variable.
Insert the script on the order editing form in the OnBeforeCheckViewEdit event of the CheckView object:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, CurrencyCode, CategCode: integer; currsum, MaxCurrSum, CategSum: double; it: TCheckItem; Categ: TClassificatorGroup; begin //********** Set parameters ***********// CurrencyCode := 1; // кодcurrency валюты(бонусовbonuses) code CategCode := 25; // код категории блюд для ограничения суммы платежа валютой food category code to limit the payment amount in currency MaxCurrSum := 500; // максимальная сумма платежа заданной валютой maximum payment amount in the specified currency //********** Set parameters ***********// currsum := 0; CategSum := 0; Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode)); if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if (TPayLine(AObjectAft).code = CurrencyCode) then begin for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then if (it.Code = CurrencyCode) then currsum := currsum + TPayLine(it).NationalSum; if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then if Categ.IsChild(it.RefItem) then if (TDish(it).Quantity > 0) then CategSum := CategSum + TDish(it).PRListSum end; if ((currsum+TPayLine(AObjectAft).NationalSum) > CategSum) then begin AAllow := false; AMessage := 'ПревышенаCurrency оплатаpayment валютойexceeded !'; end; if ((currsum+TPayLine(AObjectAft).NationalSum) > MaxCurrSum) then begin AAllow := false; AMessage := 'ПревышенаMaximum amount максимальнаяof суммаcurrency оплатыpayment валютойexceeded !'; end; end; end; |
...
A script to limit vouchers to 50%
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, codecurr: integer; currsum, limitcurrsum: double; it: TCheckItem; begin currsum := 0; limitcurrsum := round(RKCheck.CurrentOrder.ToPaySum*0.5); // limit sum codecurr := 16; // Currency code for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TPayLine') then if (it.Code = codecurr) then begin dbg.dbgprint('TPayLine(it).NationalSum='+floattostr(TPayLine(it).NationalSum)); currsum := currsum + TPayLine(it).NationalSum; end; end; dbg.dbgprint('currsum='+floattostr(currsum)); if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then begin //dbg.dbgprint('TPayLine(AObjectAft).code='+inttostr(TPayLine(AObjectAft).code)); if (TPayLine(AObjectAft).code = codecurr) then begin dbg.dbgprint('TPayLine(AObjectAft).BasicSum='+floattostr(TPayLine(AObjectAft).BasicSum)); dbg.dbgprint('TPayLine(AObjectAft).OriginalSum='+floattostr(TPayLine(AObjectAft).OriginalSum)); dbg.dbgprint('TPayLine(AObjectAft).DBKurs='+floattostr(TPayLine(AObjectAft).DBKurs)); if (currsum + TPayLine(AObjectAft).BasicSum) > limitcurrsum then begin dbg.dbgprint('(currsum + TPayLine(AObjectAft).BasicSum) > '+floattostr(limitcurrsum)); AAllow := false; AMessage := 'Payment is limited by this currency '+FloatToStr(limitcurrsum)+' !'; end; end; end; end; |
...
A script to limit the purchase of dishes (no more than twice a day)
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i,dd: integer; tmp1 : string; begin dd := 0; if (AEditType = etInsert) and SYS.ObjectInheritsFrom(AObjectAft, 'TDiscountItem') then begin if TDiscountItem(AObjectAft).CardCode <> '' then begin tmp1 := TDiscountItem(AObjectAft).CardCode; if pos('778=', tmp1) = 1 then begin delete(tmp1, 1, 4); tmp1 :=copy(tmp1, pos('=', tmp1) + 1, 7); i := RKCheck.GetDiscountCount(TDiscountItem(AObjectAft).Sifr, TDiscountItem(AObjectAft).MInterface, TDiscountItem(AObjectAft).CardCode); dd := StrToIntDef(tmp1,0); if (dd>=100) and (dd<=500) then if i > 0 then begin AAllow := False; AMessage := 'ПДСPDS можетcan бытьbe примененаused неonly болееonce 1 раза в деньa day!'; end; if (dd>=5001) and (dd<=6000) then if i > 1 then begin AAllow := False; AMessage := 'ПДСPDS можетcan бытьbe примененаused неonly болееtwice 2 раз в деньa day!'; end; end; end; end; end; |
Скрипт на добавление бесплатного блюда
Акция — при заказе 2-х десертов (1-ая категория блюд) напиток бесплатно (2-ая категория блюд). Нужен скрипт для добавления 100% скидки блюду 2-ой категории, если в заказ добавлены 2 блюда 1-ой категории.
A script to add a free dish
A special offer: order 2 desserts (1st category of dishes) and get a free drink (2nd category of dishes). You need a script to add a 100% discount to a dish of the 2nd category if 2 dishes of the 1st category are added to the order.
Insert the script specified below on the order form for the CheckView component in the OnAfterCheckViewEdit event. Specify the corresponding category codes in this scriptВ форме заказа у компонента CheckView в событии OnAfterCheckViewEdit указать скрипт расположенный ниже. В скрипте указать соответствующие коды категорий. Для блюд из бесплатной категории выставить свойства: For dishes from the free category, set the following properties:
...
- Prices — an open price: V
...
- Servings — Add to order: "Separate line for each serving"
The script resets the price of the added dish from the «bonus» category to zero if the required number of dishes from the main category is ordered. Скрипт обнуляет стоимость добавляемого блюда из «бонусной» категории, если набрано необходимое количество блюд из основной категории.
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i, j, k: integer; it: TCheckItem; a: double; CntCateg1, CntCateg2: integer; Categ1, Categ2: TClassificatorGroup; begin CntCateg1 := 0; CntCateg2 := 0; k := 0; Categ1 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', 1)); //1 - category code Categ2 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', 8)); //8 - category code if SYS.ObjectInheritsFrom(TObject(AObjectBef), 'TDish') then if Categ1.IsChild(TDish(AObjectBef).RefItem) then //Check category of the dish begin for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(TObject(it), 'TDish') then //Check dish lines only begin if Categ1.IsChild(it.RefItem) then //Check category of the dish CntCateg1 := CntCateg1 + trunc(TDish(it).Quantity); if Categ2.IsChild(it.RefItem) then //Check category of the dish if TDish(it).Price = 0 then CntCateg2 := CntCateg2 + trunc(TDish(it).Quantity); end; end; if Categ1.IsChild(TDish(AObjectBef).RefItem) then //Check category of the dish CntCateg1 := CntCateg1 - 1; if Categ2.IsChild(TDish(AObjectBef).RefItem) then //Check category of the dish CntCateg2 := CntCateg2 - 1; k := (CntCateg1 div 2) - CntCateg2; if k>0 then begin if SYS.ObjectInheritsFrom(AObjectAft, 'TDish') then //Check dish lines only if Categ2.IsChild(TDish(AObjectAft).RefItem) then //Check category of the dish if trk7menuItem(TDish(AObjectAft).RefItem).OpenPrice then begin TDish(AObjectAft).IsUserPrice := true; TDish(AObjectAft).UserPrice := 0; end; end; if k<0 then while k<0 do begin for j := RKCheck.CurrentOrder.Sessions.LinesCount - 1 downto 0 do begin it := RKCheck.CurrentOrder.Sessions.Lines[j]; if Categ2.IsChild(it.RefItem) then //Check category of the dish if TDish(it).Price = 0 then begin k := k + trunc(TDish(it).Quantity); RKCheck.DeleteCheckItem(it); end; end; end; end; end; |
Скрипт на подтверждение оплаты неплательщиком
В свойстве валюты «Автозаполнение» выставлено «Вся сумма+подтверждение». При оплате заказа на эту валюту выходит сообщение: «Вы хотите оплатить чек с помощью «Питание персонала?»
В приведенных ниже скриптах реализовано подтверждение пользователем операции оплаты валютой с кодом «1». Срабатывает при вводе в чеке суммы этой валютой.
...
A script to confirm payment by a defaulter
«Whole amount+confirmation» is set in the currency «Autofill» property. When paying for the order in this currency, the following message appears: «Do you want to pay the bill using "Staff meals?»
The scripts, given below, provide the user's confirmation of payment in currency with the code «1». They are triggered by entering the amount of this currency in the check.
First, you need to create an empty script for a custom operation:
Code Block | ||
---|---|---|
| ||
procedure ProcessOperation1001446(Parameter: integer); begin end; |
Назначить этот скрипт к пользовательской операции. Этой пользовательской операции назначить права доступа только менеджеру.
...
Assign this script to a custom operation. Give the access rights for this user operation only to the manager.
On the order editing form for the CheckView component, insert the script in the OnBeforeCheckViewEdit event:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); begin begin if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if (TPayLine(AObjectAft).code=1) then if RK7.CashUser.ConfirmOperation(rkoUser07) then AAllow := True else begin AAllow := false; AMessage := 'Oplata etoj valutoj zapreshenaPayment in this currency is prohibited!'; end; end; end; |
Скрипт, удаляющий скидки при оплате неплательщиком
...
A script to remove discounts when paying by a defaulter
A script for the OnBeforeCheckViewEdit event of the CheckView component on the order editing form:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i: integer; it: TCheckItem; begin if SYS.ObjectInheritsFrom(AObjectAft, 'TPayLine') then if TCurrencyType(TCurrency(TPayLine(AObjectAft).RefItem).MainParent).Code=91 then // 91 - code кодof currency типаtype валютыfor дляwhich которогоto запретитьprohibit наличиеdiscounts скидокin вthe чекеcheck begin for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(it, 'TDiscountItem') then RKCheck.DeleteCheckItem(it); end; end; end; |
Note |
---|
свойство MainParent реализовано в the MainParent property is implemented in 7.5.2.253. В веткеThere is no such property in the 7.4.21 этого свойства нет. |
Скрипт на запрет более чем 15 блюд в заказе
...
branch. |
A script to prohibit more than 15 dishes in the order
On the edit form for the CheckView object, insert the script in the OnBeforeCheckViewEdit event:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i: integer; qnt: double; it: TCheckItem; begin qnt := 0; if SYS.ObjectInheritsFrom(AObjectAft, 'TDish') then if not(AEditType = etRemove) then begin qnt := TDish(AObjectAft).Quantity-TDish(AObjectBef).Quantity; for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(it, 'TDish') then qnt := qnt + TDish(it).Quantity; end; end; if qnt > 15 then // check limit exceed begin AAllow := false; AMessage := 'Quantity exceeded the permitted limit '; end; end; |
Скрипт на добавление в чек только блюда из определенной категории
A script to add only dishes from a certain category to the check
The instructionСценарий.
1. Создаем заказ;. Create an order.
2. Добавляем первое блюдо. Оно лежит в категории с кодом, например, 257
3. Добавляем второе блюдо
3.1 Скрипт проверяет код категории добавленного блюда и сравнивает его с кодом категории первого добавленного блюда
3.2 Если они равны, то добавляем блюдо в заказ
Add the first dish. It is placed in the category with code, f.ex., 257.
3. Add the second dish.
3.1 The script verifies the category code of the added dish and compares it with the category code of the first added dish.
3.2 If they are equal, then add the dish to the order.
3.3 If different, it outputs the message «This 3.3 Если разные, то выдает сообщение 'This dish has different department code. \n Please create different (next) order with this dish'
и блюдо в заказ не добавляется
4. Так проверяем каждое следующее блюдо
Цель. Обеспечить попадание в чек только тех блюд которые находятся в одной категории из классификации.
Код классификации так же можно указать в скрипте для проверки.
...
dish» and the dish is not added to the order.
4. Check every next dish the same way.
The objective: to ensure that only dishes from the same category of the classification are included in the check.
The classification code can also be specified in the script for verification.
The script checks the menu category of the first dish in the order and does not allow to add dishes from other menu groups.
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i,CntDish1,numcateg:integer; it: TCheckItem; Categ: TClassificatorGroup; firstdish: boolean; begin if AEditType = etInsert then begin CntDish1 := 0; firstdish := false; for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(it, 'TDish') then if ((it.State = disOpened) or (it.State = disPrinted)) then if TDish(it).Quantity > 0 then begin if not(firstdish) then begin numcateg := TDish(it).RefItem.MainParent.code; firstdish := true; end; CntDish1 := CntDish1 + trunc(TDish(it).Quantity); break; end; end; if CntDish1<>0 then if SYS.ObjectInheritsFrom(AObjectAft, 'TDish') then begin if (TDish(AObjectAft).RefItem.MainParent.code <> numcateg) then //Check category of the dish begin AMessage := 'This dish has different department code.'+#10#13+'Please create different (next) order with this dish'; AAllow := false; end; end; end; end; |
...
The script controls adding the dishes from the specified classification according to the category of the first dish in the order:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var i,j,CntDish1,ClassifCode1:integer; it: TCheckItem; Categ1Firts,Categ1,Classif1: TClassificatorGroup; firstdish: boolean; begin //************************** Set parameters **********************************// ClassifCode1 := 16; // code classificator //************************** Set parameters **********************************// if AEditType = etInsert then begin CntDish1 := 0; firstdish := false; Classif1 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', ClassifCode1)); for i := 0 to RKCheck.CurrentOrder.Sessions.LinesCount - 1 do begin it := RKCheck.CurrentOrder.Sessions.Lines[i]; if SYS.ObjectInheritsFrom(it, 'TDish') then if ((it.State = disOpened) or (it.State = disPrinted)) then if TDish(it).Quantity > 0 then begin if not(firstdish) then begin for j := 0 to Classif1.ChildCount - 1 do begin Categ1 := TClassificatorGroup(Classif1.ChildItem(j)); if Categ1.IsChild(it.RefItem) then begin Categ1Firts := Categ1; break; end; end; firstdish := true; end; CntDish1 := CntDish1 + trunc(TDish(it).Quantity); break; end; end; if CntDish1<>0 then if SYS.ObjectInheritsFrom(AObjectAft, 'TDish') then begin if not(Categ1Firts.IsChild(TDish(AObjectAft).RefItem)) then //Check category of Classification begin AMessage := 'This dish has different department code.'+#10#13+'Please create different (next) order with this dish'; AAllow := false; end; end; end; end; |
Скрипт для контроля продаж алкоголя
...
A script to control alcohol sale
The operation mode of the cash register is a quick check. When adding a dish from a certain category to the order (for KFC, the Crunch/18Alkdish category is alcoholic beverages), the following dialog box is displayed to the cashier:
_____________________________ТЫ ПРОВЕРИЛ ДОКУМЕНТЫ
HAVE YOU CHECKED THE DOCUMENTS?! (
...
large)
кнопка ДА кнопка НЕТ
мы не продаем алкоголь гостям, родившимся
...
YES button NO button
we do not sell alcohol to guests born
later than October 15, 1996*
____________________________
*система подсчитывает подсказку для кассира по допустимому возрасту
(чтобы им не приходилось задумываться над подсчетом) автоматически - 18 лет + 1 день
3. Если кассир выбирает ДА, то блюдо добавляется в заказ
4. При повторном добавлении блюда из данной категории в тот же чек диалоговое окно не вызывает. Селектор блюд остается в той же папке
5. Кассир выбирает НЕТ, то блюдо в заказ не добавляется и касса возвращается в корневую папку меню.
...
the system calculates the legal age tip for the cashier
(so that they do not have to count) automatically - 18 years + 1 day
3. If the cashier chooses YES, then the dish is added to the order.
4. Another dish from this category added to the same order does not re-open this dialog box. The dish selector remains in the same folder.
5. If the cashier selects NO, then the dish is not added to the order and the cash register returns to the root folder of the menu.
On the quick check editing form, insert the script for the CheckView object in the OnBeforeCheckViewEdit event:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var Categ: TClassificatorGroup; CategCode: integer; begin CategCode := 8; // кодcategory категорииcode Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode)); if not(AEditType = etRemove) then if RKCheck.CurrentOrder.UserTag1 = 0 then if SYS.ObjectInheritsFrom(TObject(AObjectAft), 'TDish') then if Categ.IsChild(TDish(AObjectAft).RefItem) then if GUI.RKMessageDlg('ТЫ ПРОВЕРИЛ ДОКУМЕНТЫHAVE YPU CHECKED THE DOCUMENTS?! '+#13#10+' Не продаём алкоголь гостям родившимся после We do not sale alcohol to the Guests born later than '+FormatDateTime('dd mmmm ',Date-1)+IntToStr(StrToInt(FormatDateTime('yyyy',Date)) - 18), 0, 3, 100000) = 6 then begin RKCheck.CurrentOrder.UserTag1 := 1; // метка,label чтобыto повторноavoid неdialog открыватьre-opening диалог AAllow := True end else begin RK7.PostOperation(rkoDishSelector, 0); AAllow := False; end; end; |
...
A script for the CheckView object in the OnOrderVerify event:
Code Block | ||
---|---|---|
| ||
procedure CheckViewOnOrderVerify(Sender: TObject; AVerifyType: TVerifyType; oper: integer; var AContinue: boolean); begin if AVerifyType = vtNewQuickCheck then if RKCheck.CurrentOrder.IsEmpty then RKCheck.CurrentOrder.UserTag1 := 0; end; |
Скрипт вывода сообщения запроса возраста гостя при продаже алкоголя
...
A script to display a message requesting the guest's age when selling alcohol
On the order editing form, insert the CheckViewOnBeforeCheckViewEdit script and specify the SliceStrToStrings auxiliary procedure above it.
Code Block | ||
---|---|---|
| ||
procedure SliceStrToStrings(StrIn,marker:String; var StringsOut:TStringList); var s,s1:string; i:Integer; begin s:=StrIn; while length(s)<>0 do begin i:=pos(marker,s); if i=0 then begin s1:=s; delete(s,1,length(s1)); StringsOut.Add(s1); end else begin s1:=copy(s,1,i-1); delete(s,1,i); StringsOut.Add(s1) end; end; end; procedure CheckViewOnBeforeCheckViewEdit(Sender: TObject; AEditType: TEditType; AObjectBef, AObjectAft: TObject; var AAllow: boolean; var AMessage: string); var Categ, Categ2: TClassificatorGroup; CategCode, CategCode2: integer; sdate: string; bdate, cdate: TDateTime; Day, Year, Month: integer; SLtmp: TStringList; begin CategCode := 8; // тут указать код категории алкоголяenter the alcohol category code here CategCode2 := 5; // тут указать код категории алкоголя enter the alcohol category code here cdate := EncodeDate((StrToInt(FormatDateTime('yyyy',Date)) - 18), StrToInt(FormatDateTime('mm',Date-1)),StrToInt(FormatDateTime('dd',Date-1))); Categ := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode)); Categ2 := TClassificatorGroup(getitemBycodeNum('ClassificatorGroups', CategCode2)); if RKCheck.CurrentOrder.UserTag2 = 20000 then if RK7.CashUser.ConfirmOperation(rkoUser08) then AAllow := True else begin AAllow := false; AMessage := 'НеобходимоManager подтверждениеconfirmation менеджераrequired!'; exit; end; if not(AEditType = etRemove) then if SYS.ObjectInheritsFrom(TObject(AObjectAft), 'TDish') then if (Categ.IsChild(TDish(AObjectAft).RefItem)) or (Categ2.IsChild(TDish(AObjectAft).RefItem)) then if (RKCheck.CurrentOrder.UserTag2 <> 10000) then begin AAllow := False; AMessage := 'НеверныйWrong форматdate датыformat!!!'; sdate:=gui.InputBox('ДатаDate of рожденияbirth ддdd.мм mm.гггг yyyy', 'Введите дату рождения гостя'Enter the guest's date of birth', '', true); if length(trim(sdate))<>10 then begin AMessage := 'НеверныйWrong форматdate датыformat!'; AAllow := False; end else try SLtmp := TStringList.Create; SLtmp.Clear; SLtmp.Sorted := false; SliceStrToStrings(sdate,'.',SLtmp); bdate := EncodeDate(StrToInt(SLtmp.strings[2]),StrToInt(SLtmp.strings[1]),StrToInt(SLtmp.strings[0])); if bdate<=cdate then begin RKCheck.CurrentOrder.UserTag2 := 10000; RKCheck.UpdateVisitComment('',DateToStr(bdate)); AAllow := True; end else if bdate>cdate then begin RKCheck.CurrentOrder.UserTag2 := 20000; AMessage := 'Гость моложеGuest under the age of 18 лет. ПродажаAlcohol алкоголяsale запрещенаprohibited!'; AAllow := False; end else gui.showmessage('ОшибкаError of вводаbirth датыdate рожденияinput'); finally SLtmp.Free(); end; end; end; |
Скрипт для пробития в быстрый чек не более одного комбо-блюда с определенным кодом
A script to add no more than one combo dish with a certain code into a quick check
A script to add of no more than one combo dish CATERING STAFF with the code 157 into a quick check. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Скрипт для пробития в быстрый чек не более одного комбо-блюда ПИТАНИЕ ПЕРСОНАЛА с кодом 157.
Скрипт разместить на форме редактирования быстрого чека у объекта CheckView в событии OnBeforeCheckViewEdit
...