Disallow back dated vouchers

Discussion in 'Requests' started by Rai, Jan 2, 2019.

    
  1. Rai

    Rai New Member


    How to disallow back dated vouchers ?I have done coding ,I have given machine date to compare in case user change the system date they are able to pass the backdated entries ..How can I control this can I give google date ?
     


  2. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    Tally's security...backdated feature is enough for your purpose........ why would u need a separate TDL?

    Unless you are using a old (pirated) version.
     


  3. drive

    drive Active Member


    ;;add custom date control in vch forms
    [#Form: Voucher]
    Add : Control : MyMSGDown : ($Date < @@LockStartDt)
    Add : Control : MyMSGUp : ($Date > @@LockEndDt)

    [System : Formula]
    MyMSGDown : "Date Msg Down"
    MyMSGup : "Date Msg Up"
    LockStartDt : $$Date:"01-Oct-2018"
    LockEndDt : $$Date:"31-Oct-2018"
     


  4. Bipin Damania

    Bipin Damania Active Member


    How to Set Company-wise Date Control ?
     


  5. AMIT JALAN

    AMIT JALAN Member


    Dear Sir,

    I have created a Custom form to create voucher. I would like to restrict user to create voucher using this form if they are not allowed to create back dated voucher.

    Currently even if a user is not allowed to create back date vouchers, he is able to create back dated voucher using this form.

    Please suggest how I get using TDL that if current user is allowed back dated voucher or not?

    Until now, I came across three function through which I can check whether a user is allowed to create voucher or not but can't check if back dated is disallowed or not.

    $$Allow:Create:Voucher
    $$AllowCreateVoucher:##SVVoucherType
    $$AllowCreateAnyVoucher

    Please Help to get allowability of Back Dated Voucher.
     


Share This Page