Vendor name in PDF invoice

  • Posts: 344
  • Thank you received: 3
7 years 3 months ago #256793

-- HikaShop version -- : 2.6.4
-- HikaMarket version -- : 1.7.2
-- Joomla version -- : 3.6.4
-- PHP version -- : 7

Joomla 3.6.4
Hikashop 2.6.4
Hikamarket 1.7.2

Just bought Hikamarket. Very happy about it.
Is it possible to place the "Vendor name" which is attached to the product below the product name in the on the PDF invoice.

Please see image below.



If so, any advice on what the code will be ?

Tnx.

Last edit: 7 years 3 months ago by river.

Please Log in or Create an account to join the conversation.

  • Posts: 25994
  • Thank you received: 4004
  • MODERATOR
7 years 3 months ago #256827

Hi,

Here the code you can use in the "invoice.php" file of the "attachinvoice" plugin.

if(empty($this->db))
	$this->db = JFactory::getDBO();
$query = 'SELECT hkop.*, hko.order_vendor_id, hmv.vendor_name, hmv.vendor_id '.
	' FROM ' . hikashop_table('order_product') . ' as hkop '.
	' INNER JOIN ' . hikashop_table('order'). ' AS hko ON hkop.order_id = hko.order_id '.
	' LEFT JOIN ' .'#__hikamarket_vendor'. ' AS hmv ON hmv.vendor_id = hko.order_vendor_id '.
	' WHERE hko.order_type = \'subsale\' AND hko.order_parent_id = '. (int)$order->order_id .
	' ORDER BY hko.order_id DESC';
$this->db->setQuery($query);
$vendorProducts = $this->db->loadObjectList();

foreach($order->products as &$product) {
	foreach($vendorProducts as $vendorProduct) {
		if((int)$vendorProduct->order_product_parent_id != $product->order_product_id)
			continue;

		if((int)$vendorProduct->vendor_id <= 1)
			break;

		if(empty($product->extraData))
			$product->extraData = array();
		$product->extraData['vendor'] = '<span class="order_product_vendor">'.JText::sprintf('SOLD_BY_VENDOR', $vendorProduct->vendor_name).'</span>';
		break;
	}
}
unset($product);
Then, after the product code is displayed
if ($config->get('show_code')) {
	echo '<br/>'.$product->order_product_code;
}
You can add some code to display the content from $product->extraData .

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Last edit: 7 years 3 months ago by Jerome. Reason: fixing code for $this->db

Please Log in or Create an account to join the conversation.

  • Posts: 344
  • Thank you received: 3
7 years 3 months ago #256835

OK excellent. tnx

Any advice on in which line I should paste this code ?

Last edit: 7 years 3 months ago by Jerome. Reason: remove duplicate code

Please Log in or Create an account to join the conversation.

  • Posts: 25994
  • Thank you received: 4004
  • MODERATOR
7 years 3 months ago #256845

Hi,

Before the "foreach" for the listing of the order products.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

Please Log in or Create an account to join the conversation.

  • Posts: 344
  • Thank you received: 3
7 years 3 months ago #256948

OK so I placed the code before the line

foreach($order->products as $j => $optionElement){

...on line number 171 in invoice.php file.

Im not sure if this is the correct place.

Anyway, then I need to add....

You can add some code to display the content from $product->extraData .


But what exactly would this code be, any advice ?



Tnx

Please Log in or Create an account to join the conversation.

  • Posts: 25994
  • Thank you received: 4004
  • MODERATOR
7 years 3 months ago #256951

Hi,

Unfortunately no, it is not the right place.
That place would be better :

	$fieldsClass = hikashop_get('class.field');
	$group = $config->get('group_options',0);
	foreach($order->products as $product){

Afterwards you will be able to display the product vendor using
if(!empty($product->extraData['vendor']))
	echo $product->extraData['vendor'];

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

Please Log in or Create an account to join the conversation.

  • Posts: 344
  • Thank you received: 3
7 years 3 months ago #257133

OK so I place the main code before the line

foreach($order->products as $product){

But then I get the message

An error has occurred.
0 Call to a member function setQuery() on null

I also tried to place the code before the whole paragraph below
$fieldsClass = hikashop_get('class.field');
$group = $config->get('group_options',0);
foreach($order->products as $product){

But get the same error message as above.

Any advice ?

tnx

Last edit: 7 years 3 months ago by Jerome. Reason: removing duplicate code

Please Log in or Create an account to join the conversation.

  • Posts: 25994
  • Thank you received: 4004
  • MODERATOR
7 years 3 months ago #257134

Hi,

I edit my previous post.
Please add the content

if(empty($this->db))
	$this->db = JFactory::getDBO();
in order to fix the database object.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
The following user(s) said Thank You: river

Please Log in or Create an account to join the conversation.

  • Posts: 344
  • Thank you received: 3
7 years 3 months ago #257138

FINALLY IT WORKS !

You're the best Jerome

Tnx a lot =)

Please Log in or Create an account to join the conversation.

  • Posts: 344
  • Thank you received: 3
7 years 3 months ago #257374

The vendor name is only displaying on the PDF for the main order.

The vendor name is NOT displaying on the PDF invoice for the sub orders ?

.....any advice on how to fix it ?

Last edit: 7 years 3 months ago by river.

Please Log in or Create an account to join the conversation.

  • Posts: 25994
  • Thank you received: 4004
  • MODERATOR
7 years 3 months ago #257397

Hi,

There is nothing to "fix".
You asked here how display the vendor name in the PDF invoice ; regarding your screenshot it was related to the PDF invoice generated for the customer.
And I gave you the code for that purpose.

Now you want to go deeper in the customization of the "attachinvoice" plugin, with new modifications.
I'm afraid that it is going outside the support range I can provide for HikaMarket.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

Please Log in or Create an account to join the conversation.

Moderators: Obsidev
Time to create page: 0.082 seconds
Powered by Kunena Forum