diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-10-18 17:08:55 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-10-18 17:08:55 +0700 |
| commit | 548e2b48b1c2f6521037765f96083a8d79f611d6 (patch) | |
| tree | b2b1d8d924ec973d683e8fb0157b302bc7b037de /src-migrate/types | |
| parent | 87ffd2fa7edc240693ddd81401ef23c5cd1bbb3e (diff) | |
<iman> add pengiriman section
Diffstat (limited to 'src-migrate/types')
| -rw-r--r-- | src-migrate/types/tempo.ts | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src-migrate/types/tempo.ts b/src-migrate/types/tempo.ts index 85680cba..6e3f2502 100644 --- a/src-migrate/types/tempo.ts +++ b/src-migrate/types/tempo.ts @@ -1,4 +1,8 @@ -import { TempoSchema, TempoSchemaKontakPerson } from '~/validations/tempo'; +import { + TempoSchema, + TempoSchemaKontakPerson, + TempoSchemaPengiriman, +} from '~/validations/tempo'; import { OdooApiRes } from './odoo'; import { z } from 'zod'; @@ -29,11 +33,18 @@ export type tempoPropsKontakPerson = { financeName: string; purchasingMobile: string; }; +export type tempoPropsPengiriman = { + PICName: string; + streetPengiriman: string; + statePengiriman: string; + cityPengiriman: string; +}; export type TempoApiProps = OdooApiRes<TempoProps>; export type TempoProps = z.infer<typeof TempoSchema>; export type TempoPropsKontakPerson = z.infer<typeof TempoSchemaKontakPerson>; +export type TempoPropsPengiriman = z.infer<typeof TempoSchemaPengiriman>; export type TempoResApiProps = { Tempo: boolean; |
