Fixes for meta definitions of list views
This commit is contained in:
parent
bc8c8ec17e
commit
2e45fbe9d5
|
|
@ -131,7 +131,7 @@ class RegistroAlta
|
|||
|
||||
/** The business entity that is issuing the invoice */
|
||||
$emisor = new PersonaFisicaJuridica();
|
||||
$emisor->setNif($this->company->settings->vat_number)
|
||||
$emisor->setNif(substr($this->company->settings->vat_number, 0, 9))
|
||||
->setNombreRazon($this->invoice->company->present()->name());
|
||||
|
||||
/** The business entity (Client) that is receiving the invoice */
|
||||
|
|
|
|||
|
|
@ -14480,8 +14480,16 @@ paths:
|
|||
$ref: '#/components/headers/X-RateLimit-Limit'
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/Client'
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
data:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/Client'
|
||||
meta:
|
||||
type: object
|
||||
$ref: '#/components/schemas/Meta'
|
||||
401:
|
||||
$ref: '#/components/responses/401'
|
||||
403:
|
||||
|
|
|
|||
|
|
@ -219,8 +219,16 @@
|
|||
$ref: '#/components/headers/X-RateLimit-Limit'
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/Client'
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
data:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/Client'
|
||||
meta:
|
||||
type: object
|
||||
$ref: '#/components/schemas/Meta'
|
||||
401:
|
||||
$ref: '#/components/responses/401'
|
||||
403:
|
||||
|
|
|
|||
Loading…
Reference in New Issue