help corect this code GST rate in service invoice

Discussion in 'Requests' started by Frz, Apr 19, 2018.

    
  1. Frz

    Frz Member


    Dear All
    im trying to get gst code & rate in service invoice
    my code below is not working

    ;;======TO SHOW IGST RATE & HSN CODE IN SALES & PURCHASE VOUCHER ONLY FOR DISPLAY======
    [#Line : EI ColumnOne]
    Option : Global EI ColumnOne
    [!Line: Global EI ColumnOne]
    Add : Right Fields : At Beginning : IAHSNcodeT, IAMVAT
    [Field : IAHSNCodeT]
    Info : "HSN/SAC Code"
    Align : Centre
    Width : 15
    Style : Small bold
    [Field : IAMVAT]
    Info : "IGST%"
    Align : Centre
    Width : @@NumberWidth
    Style : Small bold
    [#Line : EI ColumnTwo]
    Option : Global EI ColumnTwo
    [!Line: Global EI ColumnTwo]
    Add : Right Fields : At Beginning : IAHSNcodeT, IAMVAT
    Local : Field : IAHSNCodeT : Info : " "
    Local : Field : IAMVAT : Info : " "
    [#Line : EI InvInfo]
    Option : Global EI InvInfo
    [#Line : CI InvInfo]
    Option : Global EI InvInfo
    [!Line: Global EI InvInfo]
    Add : Right Fields : At Beginning : IAHSNCode, IAMVA
    [Field : IAHSNCode]
    Use : Short Name Field
    Set As : If $$Value:StockItem then $GSTHSNCode:StockItem:$StockItemName else $$Value:$GSTHSNCode:Ledger:$LedgerName
    Align : Centre
    Border : Thin Left Right
    Width : 15
    Skip : YES
    [Field : IAMVA]
    Use : Number Field
    Set As : If $$Value:StockItem then $GSTIGSTRate:StockItem:$StockItemName else $$Value:$GSTIGSTRate:Ledger:$LedgerName
    Format : "NoZero, Percentage"
    Align : Centre
    Border : Thin Left Right
    Skip : YES
    Regards
    Feroz
     


  2. Johar

    Johar Member


    Set As : $GSTHSNCode:StockItem:$StockItemName ;; HSNCode
    Set As : $GSTIGSTRate:StockItem:$StockItemName ;;GST Rate
     


  3. Johar

    Johar Member


    Set As : $GSTHSNCode:StockItem:$StockItemName ;; HSNCode
    Set As : $GSTIGSTRate:StockItem:$StockItemName ;;GST Rate
     


  4. Frz

    Frz Member


    Dear Johar
    I need the hsn code & gst rate for a service
    its not a stock item
    also the entry would be an accounting invoice & not an item invoice
    Regards
    Frz
     


  5. Devendra_Rawat

    Devendra_Rawat Well-Known Member




    It is only HSNCode and not GSTHSNCode
     


Share This Page