@ercioko/meblotex-api 0.2.16 → 0.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app_types.d.ts +52 -18
- package/package.json +1 -1
package/dist/app_types.d.ts
CHANGED
|
@@ -521,17 +521,22 @@ export type ZaliczkaZamowienieDokument = Pick<WplataAttributes, 'id_wplata' | 'd
|
|
|
521
521
|
id_zaliczka_rozliczenie: number;
|
|
522
522
|
kwota_rozliczenia: number;
|
|
523
523
|
};
|
|
524
|
-
export
|
|
525
|
-
|
|
524
|
+
export interface ZamowienieNowyDokumentElement {
|
|
525
|
+
cena_jednostka: string;
|
|
526
|
+
cena_jednostka_netto: string;
|
|
527
|
+
czas_dodanie: string;
|
|
528
|
+
czas_edycja: string | null;
|
|
529
|
+
id_uzytkownik_dodanie: number;
|
|
530
|
+
id_zamowienie_dokument: number;
|
|
531
|
+
id_zamowienie_dokument_element: number;
|
|
532
|
+
ilosc: string;
|
|
526
533
|
jednostka: Jednostka;
|
|
527
|
-
cena_jednostka: number;
|
|
528
|
-
cena_jednostka_netto: number;
|
|
529
|
-
podatek: number;
|
|
530
|
-
ilosc: number;
|
|
531
|
-
wartosc: number;
|
|
532
|
-
netto: number;
|
|
533
534
|
korekta: boolean;
|
|
534
|
-
|
|
535
|
+
nazwa: string;
|
|
536
|
+
netto: string;
|
|
537
|
+
podatek: number;
|
|
538
|
+
wartosc: string;
|
|
539
|
+
}
|
|
535
540
|
export interface ZamowienieNowyDokumentElementRequest {
|
|
536
541
|
nazwa: string;
|
|
537
542
|
jednostka: Jednostka;
|
|
@@ -609,15 +614,44 @@ export type ZamowienieElementInfo = {
|
|
|
609
614
|
export type ZamowienieInfoResponse = {
|
|
610
615
|
zamowienie_elementy: ZamowienieElementInfo[];
|
|
611
616
|
};
|
|
612
|
-
export
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
617
|
+
export interface KlientZamowienieDokumentResponse {
|
|
618
|
+
czas_dodanie: string;
|
|
619
|
+
czas_edycja: string | null;
|
|
620
|
+
data_platnosci: string;
|
|
621
|
+
data_sprzedazy: string;
|
|
622
|
+
data_wystawienia: string;
|
|
623
|
+
forma_platnosci: FormaPlatnosci;
|
|
624
|
+
id_klient: number;
|
|
625
|
+
id_klient_nabywca: number;
|
|
626
|
+
id_uzytkownik_dodanie: number;
|
|
627
|
+
id_uzytkownik_edycja: number | null;
|
|
628
|
+
id_zamowienie_dokument: number;
|
|
629
|
+
id_zamowienie_dokument_magazyn: number | null;
|
|
630
|
+
id_zamowienie_dokument_parent: number;
|
|
631
|
+
kod: string;
|
|
632
|
+
korekta: string;
|
|
633
|
+
kraj: string;
|
|
634
|
+
liczba_korekt: string;
|
|
635
|
+
miasto: string;
|
|
636
|
+
nazwa1: string;
|
|
637
|
+
nazwa2: string;
|
|
638
|
+
nazwa3: string;
|
|
639
|
+
nazwa_skrocona: string;
|
|
640
|
+
netto: string;
|
|
641
|
+
nip: string;
|
|
642
|
+
nip_kraj: string;
|
|
643
|
+
numer: string;
|
|
644
|
+
numer_domu: string;
|
|
645
|
+
numer_idx: number;
|
|
646
|
+
numer_lokalu: string;
|
|
647
|
+
parent_data_sprzedazy: string;
|
|
618
648
|
parent_numer: number;
|
|
649
|
+
parent_typ_dokumentu: TypDokumentu;
|
|
619
650
|
sortorder: number;
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
651
|
+
typ_dokumentu: TypDokumentu;
|
|
652
|
+
ulica: string;
|
|
653
|
+
ulica_txt: string;
|
|
654
|
+
wartosc: string;
|
|
655
|
+
wplata: string;
|
|
656
|
+
}
|
|
623
657
|
export {};
|