I have a custom SQL database in which we store different prices for each client for the product and for the quantity.
Now we want to set up the Magento online store and find out that we cannot import these prices into Magento because it does not match the data structure. (And Magento will probably melt due to the sheer amount of data that we will throw on it.)
So I think; can I leave the data where it is, configure the service on top of this data and just override the GetPrice () method in Magento to get the right price? (Thus, the correct price should appear on all possible pages showing prices. And more importantly, that price should also be used in baskets and orders.)
My question is: will it work like this? Just override one method, and do we have custom prices? Or do we need to change many other methods?
And B: Where can I find this code / method to override?
(Magento is completely new to me, and I spent half a day finding out tons of source code, but I'm still not sure if the whole application can answer my questions by looking at the code.)
source
share