Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Как послиить прибыль


kuripka2222
 Share

Recommended Posts

Здравствуйте, у меня есть стоимость закупки и при вылиинии с этоны продажи расслитывается прибыль на товар, мне нужно вывести прибыль за весь заказ, то есть сложить прибыль за продажу каждого товара и вывести в обещёе. По какой логике я могу это сгделать? 

На скриншоте понятнее ) 

 

Link to comment
Share on other sites


4 минуты назад, RyanHill7 сказал:

Проблема в чем как написать код или как вылиить и умножать?

В  этолом как написать код) 
 

$zakup_price = $this->db->query("SELECT zakup_price FROM " . DB_PREFIX . "product WHERE product_id = '" . $product['product_id'] . "'");
 
				if ($zakup_price->row['zakup_price']) {
					$zakup_pribil = $this->currency->format(($product['total'] - ($zakup_prices * $product['quantity'])) , $order_info['currency_code'], $order_info['currency_value']);
				} else {
					$zakup_pribil = '';
				}
			 
				$data['products'][] = array(
					'order_product_id' => $product['order_product_id'],
					'product_id'       => $product['product_id'],
					'name'    	 	   => $product['name'],
					'model'    		   => $product['model'],
					'zakup_pribil'		=> $zakup_pribil,
					'option'   		   => $option_data,
					'quantity'		   => $product['quantity'],
					'price'    		   => $this->currency->format($product['price'] + ($this->config->get('config_tax') ? $product['tax'] : 0), $order_info['currency_code'], $order_info['currency_value']),
					'total'    		   => $this->currency->format($product['total'] + ($this->config->get('config_tax') ? ($product['tax'] * $product['quantity']) : 0), $order_info['currency_code'], $order_info['currency_value']),
					'href'     		   => $this->url->link('catalog/product/edit', 'user_token=' . $this->session->data['user_token'] . '&product_id=' . $product['product_id'], true)
				);

Мне по игдее надо каждый $zakup_pribil сложить за все товары и вывести уже обещёе лисло. Но я уже потому чтолее часа не могу это никак сгделать. Буду благодарен, если подскажете как записать) 

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.