Documentation

Sav
in package

Tags
ORM\Entity

(repositoryClass=SavRepository::class)

Table of Contents

$articles  : mixed
$commande  : Commande|null
$composant  : mixed
$date  : DateTimeInterface|null
$dateUpdate  : DateTime
$diagnostic_date  : DateTimeInterface|null
$disques  : mixed
$echange_boutique  : string|null
$echange_client  : string|null
$id  : int|null
$images  : mixed
$informations  : Information|Collection
$infos_sup  : string|null
$numero  : string|null
$occt_cpu  : object
$occt_gpu  : object
$operations  : Operations|Collection
$pj  : PieceJointe|Collection
$probleme  : Probleme|Collection
$probleme_info  : string|null
$reparation  : Reparation|null
$resultat  : Status|null
$serialNumber  : mixed
$Technicien  : Technicien|null
$type  : mixed
__construct()  : mixed
__toString()  : string
addArticle()  : self
addComposant()  : self
addEtape()  : mixed
addImage()  : mixed
addInformation()  : self
addOperation()  : self
addPj()  : self
addProbleme()  : self
addSerialNumber()  : self
clearProblemes()  : mixed
findDate()  : mixed
getArticles()  : Collection<int, Details>
getClient()  : Client|null
getCommande()  : Commande|null
getComposant()  : Collection<int, Composant>
getDate()  : DateTimeInterface|null
getDateUpdate()  : string
getDiagnosticDate()  : DateTimeInterface|null
getDiagnosticDateString()  : string
getDisques()  : array<string|int, mixed>|null
getEchangeBoutique()  : string|null
getEchangeClient()  : string|null
getFormattedDate()  : string
getId()  : int|null
getImages()  : array<string|int, mixed>|null
getInformations()  : Collection<int, Information>
getInfosSup()  : string|null
getNumero()  : string|null
getOcctCpu()  : object
getOcctGpu()  : object
getOperations()  : Collection
getPj()  : Collection|array<string|int, PieceJointe>
getProbleme()  : Collection
getProblemeInfo()  : string|null
getReparation()  : Reparation|null
getResultat()  : Status|null
getSerialNumber()  : Collection<int, SerialNumber>
getTechnicien()  : User|null
getType()  : SavType|null
getUnseenInformations()  : mixed
hasComposant()  : bool
hasDisque()  : bool
hasReparation()  : bool
hasSerialNumber()  : bool
hasType()  : bool
hasUnseenInformation()  : bool
isStatut()  : bool
removeArticle()  : self
removeComposant()  : self
removeInformation()  : self
removeOperation()  : self
removePj()  : self
removeProbleme()  : self
removeSerialNumber()  : self
setCommande()  : self
setDate()  : self
setDateUpdate()  : self
setDiagnosticDate()  : self
setDisques()  : self
setEchangeBoutique()  : self
setEchangeClient()  : self
setImages()  : self
setInfosSup()  : self
setNumero()  : self
setOcctCpu()  : self
setOcctGpu()  : self
setProblemeInfo()  : self
setReparation()  : self
setResultat()  : self
setTechnicien()  : self
setType()  : self

Properties

$articles

private mixed $articles
Tags
ORM\OneToMany

(targetEntity=Details::class, mappedBy="sav")

$commande

private Commande|null $commande
Tags
ORM\ManyToOne

(targetEntity=Commande::class, inversedBy="savs")

ORM\JoinColumn

(nullable=false)

$composant

private mixed $composant
Tags
ORM\ManyToMany

(targetEntity=Composant::class, inversedBy="savs")

$date

private DateTimeInterface|null $date
Tags
ORM\Column

(type="datetime")

$dateUpdate

private DateTime $dateUpdate
Tags
ORM\Column

(type="datetime", nullable=true)

$diagnostic_date

private DateTimeInterface|null $diagnostic_date
Tags
ORM\Column

(type="date", nullable=true)

$disques

private mixed $disques = []
Tags
ORM\Column

(type="array", nullable=true)

$echange_boutique

private string|null $echange_boutique
Tags
ORM\Column

(type="text", nullable=true)

$echange_client

private string|null $echange_client
Tags
ORM\Column

(type="text", nullable=true)

$id

private int|null $id
Tags
ORM\Id
ORM\GeneratedValue
ORM\Column

(type="integer")

$images

private mixed $images = []
Tags
ORM\Column

(type="array", nullable=true)

$informations

private Information|Collection $informations
Tags
ORM\OneToMany

(targetEntity=Information::class, mappedBy="sav",cascade={"persist","remove"})

$infos_sup

private string|null $infos_sup
Tags
ORM\Column

(type="text", nullable=true)

$numero

private string|null $numero
Tags
ORM\Column

(type="string", length=255)

$occt_cpu

private object $occt_cpu
Tags
ORM\Column

(type="object", nullable=true)

$occt_gpu

private object $occt_gpu
Tags
ORM\Column

(type="object", nullable=true)

$operations

private Operations|Collection $operations
Tags
ORM\ManyToMany

(targetEntity=Operations::class, inversedBy="savs")

$pj

private PieceJointe|Collection $pj
Tags
ORM\OneToMany

(targetEntity=PieceJointe::class, mappedBy="sav",cascade={"persist","remove"})

$probleme

private Probleme|Collection $probleme
Tags
ORM\ManyToMany

(targetEntity=Probleme::class, inversedBy="savs")

$probleme_info

private string|null $probleme_info
Tags
ORM\Column

(type="text", nullable=true)

$reparation

private Reparation|null $reparation
Tags
ORM\OneToOne

(targetEntity=Reparation::class, inversedBy="sav", cascade={"persist"})

$resultat

private Status|null $resultat
Tags
ORM\ManyToOne

(targetEntity=Status::class, inversedBy="savs")

ORM\JoinColumn

(nullable=false)

$serialNumber

private mixed $serialNumber
Tags
ORM\ManyToMany

(targetEntity=SerialNumber::class, inversedBy="savs",cascade={"persist"})

$Technicien

private Technicien|null $Technicien
Tags
ORM\ManyToOne

(targetEntity=Technicien::class, inversedBy="savs")

ORM\JoinColumn

(nullable=false)

$type

private mixed $type
Tags
ORM\ManyToOne

(targetEntity=SavType::class, inversedBy="savs")

Methods

__construct()

public __construct([SavType $type = null ]) : mixed
Parameters
$type : SavType = null
Return values
mixed

__toString()

public __toString() : string
Return values
string

addArticle()

public addArticle(Details $article) : self
Parameters
$article : Details
Return values
self

addComposant()

public addComposant(Composant $composant) : self
Parameters
$composant : Composant
Return values
self

addEtape()

public addEtape(Etapes $etape) : mixed
Parameters
$etape : Etapes
Return values
mixed

addImage()

public addImage(string $image) : mixed
Parameters
$image : string
Return values
mixed

addInformation()

public addInformation(Information $information) : self
Parameters
$information : Information
Return values
self

addOperation()

public addOperation(Operations $operation) : self
Parameters
$operation : Operations
Return values
self

addProbleme()

public addProbleme(Probleme $probleme) : self
Parameters
$probleme : Probleme
Return values
self

addSerialNumber()

public addSerialNumber(SerialNumber $serialNumber) : self
Parameters
$serialNumber : SerialNumber
Return values
self

clearProblemes()

public clearProblemes() : mixed
Return values
mixed

findDate()

public findDate() : mixed
Return values
mixed

getArticles()

public getArticles() : Collection<int, Details>
Return values
Collection<int, Details>

getComposant()

public getComposant() : Collection<int, Composant>
Return values
Collection<int, Composant>

getDate()

public getDate() : DateTimeInterface|null
Return values
DateTimeInterface|null

getDateUpdate()

public getDateUpdate() : string
Return values
string

getDiagnosticDate()

public getDiagnosticDate() : DateTimeInterface|null
Return values
DateTimeInterface|null

getDiagnosticDateString()

public getDiagnosticDateString() : string
Return values
string

getDisques()

public getDisques() : array<string|int, mixed>|null
Return values
array<string|int, mixed>|null

getEchangeBoutique()

public getEchangeBoutique() : string|null
Return values
string|null

getEchangeClient()

public getEchangeClient() : string|null
Return values
string|null

getFormattedDate()

public getFormattedDate([mixed $date = '' ]) : string
Parameters
$date : mixed = ''
Return values
string

getId()

public getId() : int|null
Return values
int|null

getImages()

public getImages() : array<string|int, mixed>|null
Return values
array<string|int, mixed>|null

getInfosSup()

public getInfosSup() : string|null
Return values
string|null

getNumero()

public getNumero() : string|null
Return values
string|null

getOcctCpu()

public getOcctCpu() : object
Return values
object

getOcctGpu()

public getOcctGpu() : object
Return values
object

getOperations()

public getOperations() : Collection
Return values
Collection

getProbleme()

public getProbleme() : Collection
Return values
Collection

getProblemeInfo()

public getProblemeInfo() : string|null
Return values
string|null

getTechnicien()

public getTechnicien() : User|null
Return values
User|null

getUnseenInformations()

public getUnseenInformations(User $user) : mixed
Parameters
$user : User
Return values
mixed

hasComposant()

public hasComposant() : bool
Return values
bool

hasDisque()

public hasDisque() : bool
Return values
bool

hasReparation()

public hasReparation() : bool
Return values
bool

hasSerialNumber()

public hasSerialNumber() : bool
Return values
bool

hasType()

public hasType() : bool
Return values
bool

hasUnseenInformation()

public hasUnseenInformation(User $user) : bool
Parameters
$user : User
Return values
bool

isStatut()

public isStatut(mixed $statut) : bool
Parameters
$statut : mixed
Return values
bool

removeArticle()

public removeArticle(Details $article) : self
Parameters
$article : Details
Return values
self

removeComposant()

public removeComposant(Composant $composant) : self
Parameters
$composant : Composant
Return values
self

removeInformation()

public removeInformation(Information $information) : self
Parameters
$information : Information
Return values
self

removeOperation()

public removeOperation(Operations $operation) : self
Parameters
$operation : Operations
Return values
self

removeProbleme()

public removeProbleme(Probleme $probleme) : self
Parameters
$probleme : Probleme
Return values
self

removeSerialNumber()

public removeSerialNumber(SerialNumber $serialNumber) : self
Parameters
$serialNumber : SerialNumber
Return values
self

setCommande()

public setCommande(Commande|null $commande) : self
Parameters
$commande : Commande|null
Return values
self

setDate()

public setDate(DateTimeInterface $date) : self
Parameters
$date : DateTimeInterface
Return values
self

setDateUpdate()

public setDateUpdate(DateTimeInterface|null $dateUpdate) : self
Parameters
$dateUpdate : DateTimeInterface|null
Return values
self

setDiagnosticDate()

public setDiagnosticDate(DateTimeInterface|null $diagnostic_date) : self
Parameters
$diagnostic_date : DateTimeInterface|null
Return values
self

setDisques()

public setDisques(array<string|int, mixed>|null $disques) : self
Parameters
$disques : array<string|int, mixed>|null
Return values
self

setEchangeBoutique()

public setEchangeBoutique(string|null $echange_boutique) : self
Parameters
$echange_boutique : string|null
Return values
self

setEchangeClient()

public setEchangeClient(string|null $echange_client) : self
Parameters
$echange_client : string|null
Return values
self

setImages()

public setImages(array<string|int, mixed>|null $images) : self
Parameters
$images : array<string|int, mixed>|null
Return values
self

setInfosSup()

public setInfosSup(string|null $infos_sup) : self
Parameters
$infos_sup : string|null
Return values
self

setNumero()

public setNumero(string $numero) : self
Parameters
$numero : string
Return values
self

setOcctCpu()

public setOcctCpu(mixed $occt_cpu) : self
Parameters
$occt_cpu : mixed
Return values
self

setOcctGpu()

public setOcctGpu(mixed $occt_gpu) : self
Parameters
$occt_gpu : mixed
Return values
self

setProblemeInfo()

public setProblemeInfo(string|null $probleme_info) : self
Parameters
$probleme_info : string|null
Return values
self

setReparation()

public setReparation(Reparation|null $reparation) : self
Parameters
$reparation : Reparation|null
Return values
self

setResultat()

public setResultat(Status|null $resultat) : self
Parameters
$resultat : Status|null
Return values
self

setTechnicien()

public setTechnicien(User|null $Technicien) : self
Parameters
$Technicien : User|null
Return values
self

setType()

public setType(SavType|null $type) : self
Parameters
$type : SavType|null
Return values
self

Search results