Skip to content
Code-Schnipsel Gruppen Projekte
Commit 0a672eae erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'next' into 'master'

Next

See merge request !38
Übergeordnete ae637a6e 6d9eaa4b
No related branches found
Tags 1.12.1
2 Merge Requests!140Update 'next-4.x' with latest changes from 'main',!38Next
Pipeline #4913 bestanden mit Phase
in 26 Sekunden
<?php
namespace QUI\ERP;
use QUI;
use QUI\ERP\Accounting\ArticleList;
use QUI\ERP\Accounting\Calculations;
use QUI\ERP\Address as ErpAddress;
use QUI\ERP\User as ErpUser;
interface ErpEntityInterface
{
/**
* Get the customer of the erp entity
*
* @return ErpUser|null The customer of the order, or null if no customer is set
*/
public function getCustomer(): ?ErpUser;
/**
* Get the currency of the erp entity
*
* @return Currency\Currency
*/
public function getCurrency(): QUI\ERP\Currency\Currency;
/**
* Get the article list of the erp entity
*
* @return ArticleList
*/
public function getArticles(): ArticleList;
/**
* Get the price calculation object of the erp entity
*
* @return Calculations
*/
public function getPriceCalculation(): Calculations;
/**
* Get the delivery address of the erp entity
*
* @return Address|null
*/
public function getDeliveryAddress(): ?ErpAddress;
/**
* Set a customer to the erp entity
*
* @param array|QUI\ERP\User|QUI\Interfaces\Users\User $User
*/
public function setCustomer($User);
}
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren