I need to create some sort of a transfer slip (just like a delivery slip) that has a transfer number (eg. Transfer #TR000008) upon the transfer of stock from one warehouse to another (Stock > Stock Management --> Actions > Transfer Stock).
And I would like to show the transfer number (eg. #TR000008) in the Stock Movement column.
And, if possible, I would like to change the LABEL from "Transfer to another warehouse" to "Transfer to [NAME OF WAREHOUSE HERE]".
Any way I could hack PrestaShop to do the above?
Help is really appreciated.
UPDATE:
If no.1 is too difficult, maybe just show me a way to add extra input field in the Stock Transfer form so that I can input the transfer number manually.
NOTE:
I really need help on getting a full working code maybe based on the direction @soulseekah provided.
PS: I'm using Prestashop 1.5.2.0
While Prestashop is quite rigid in terms of flexibility and extending its features, what you ask for is pretty much possible by sprinkling a bit of JavaScript magic (read: hacks) here and there.
Note: I'm using Prestashop 1.5.6.1 for this, so there might be some minor differences.
Assumptions
I assume you know how to write basic Prestashop modules, use Prestashop hooks, setup module install and uninstall actions, and work with the database, use jQuery.
Ready?
Stock transfers
There isn't a strict notion of stock transfers in Prestashop. But you do get a complete history of stock movement, which is stored in the
stock_mvt
table and backed by theStockMvt
class.This is very fortunate and saves you having to create and manage a table of transfers. However, it may not be too reliable.
Column action
The Stock Movement screen, which is rendered by
AdminStockMvtController
, doesn't have any hooks to alter columns. So this will need some JavaScript action.The standard way of injecting JavaScript is to hook into
displayBackOfficeHeader
. Once you hook into this action, inject a JavaScript file.Extra column
The above will include your script, that is shipped along with your module. This script can use jQuery to alter the look and content of the columns.
Bonus points for sorting, searching, filtering by the new column.
Labels
Altering the names "Transfer to/from another warehouse" is simple and doesn't need any database calls. Simply look at each row, if the column contains a "from" look at the previous row and get the name from the Warehouse column. If it contains a "to" look at the next row.
This will obviously not work with sorts and filters just like that. In this case you can call the database for the warehouse names for each movement - see next section.
UI is pretty simple. But how do you get transfer slip data into there? Here comes the difficult part.
Transfer slip data
Like I said, movement data is available and can be easily retrieved in pretty much the same way
AdminStockMvtController
does it.The table will require some data from the database. You need to get the ID of a movement between warehouses, which will be your slip ID and the name of the two warehouses involved.
Basically, you need to figure out pairs of transfers by looking at the
stock_mvt_reason_lang
table and finding consecutive "to" and "from" reason pairs, these haveid_stock_mvt_reason
you're interested in. Look insidestock_mvt
, order bystock_mvt_id
and pair them up in PHP or MySQL.The
id_stock
will point to a warehouse, where you can get the names. Basically get whatever you need and pair consecutive "to" -> "from" movements as a transfer.The slip ID should probably be the
id_stock_mvt
of the "to" movement, or the "from" movement (pick one and stick to it). This way you'll be able to generate a slip with one specific ID and find the two movements which were involved in the transfer.Putting it all together
So what you have to do is throw an AJAX call at your module and return the needed data - transfer slip IDs, transfered to/from names, etc. Once this call completes you simply inject the data into the table as needed. Transfers would be links to generate your slips (see next section).
Since the table has no ID data, you'll have to make sure to return the results in the correct order, so don't forget to account for sorting, limits and pagination to output a correctly ordrdered payload to be injected into the table. You should be able to get away with sending only transfer data pairs.
Alternatively, you can create a new admin tab called "Stock Transfers" where you output the table in a clean way with transfers only.
PDF slips
PDF generation can be forked from
AdminPdfController
. You'd have to include the necessary data from transfers. By this point you would have already discovered the correct way to get all the needed data for output. Building the PDF is straightforward.Once your generator gets the slip ID you go look for it in the movements table, get its pair and all their data. As you can imagine, generation ocurrs on the fly, and slips are never stored in Prestashops. Your new transfer slips do not need to be stored either.
Overview
A quick overview of what your module will need to contain:
hookDisplayBackOfficeHeader
functionid_stock_mvt
) and output a nice slip for you to printConclusion
The whole thing is far from easy (even explaining it is difficult) and will probably take a couple of days to implement basic functionality, but it's certainly possible with varying (mosly successful) results.
One of the main difficulties lies in how two related movements are not explicitly connected, instead of some binding transfer ID you have one "to" movement and one "from" movement, with a close time between them, and the same quantity.
Maintaining a clean core fork is also an option, by the way, where you make minimal changes to core that can be merged easily with updates. Like adding hooks in convenient places, substituting one core class for your own class, etc. This will let you have less hacks.
I'll be happy to chat and discuss specifics of the above approach. Happy holidays and good luck with your project!