Jump to content

hook not working


ahegazy

Recommended Posts

Hello ,

I'm trying to automate the process of splitting an invoice as when user has two or more products they all automatically combined together in one invoice but i wanna split them

so i decided to create a hook that listens for invoice creation and split the invoice using internal API

 

After reading the documentation i created the hook placed it in 'includes/hooks'

and created an invoice but nothing happens

i even tried to check whether the script is called or not by putting 'file_put_contents()' in to of it but i got nothing

 

function chk_invoices($vars) {

   $source = $vars['source']; //api, adminarea, clientarea, autogen
   $user = $vars['user']; //The Admin ID or "system" if via cron.
   $invoiceid = $vars['invoiceid']; //The ID of the invoice that has been created

   $command = "getinvoice";
   $adminuser = "admin";
   $values["invoiceid"] = $invoiceid;

   $results = localAPI($command,$values,$adminuser);

   splitInv($results);
}

add_hook("InvoiceCreation",1,"chk_invoices");

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated