mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-16 09:07:38 +00:00
Update address handling in third-party components and types for consistency.
- Replaced `address_id` with `id` in `ThirdPartyEdit.vue` and associated logic. - Introduced `SetAddress` type to standardize address references in write operations. - Updated `SetThirdParty` and related types to use `SetAddress` for better type safety.
This commit is contained in:
@@ -182,6 +182,13 @@ export interface Address {
|
||||
isNoAddress: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Associate an existing address in write operations.
|
||||
*/
|
||||
export interface SetAddress {
|
||||
id: number;
|
||||
}
|
||||
|
||||
export interface AddressWithPoint extends Address {
|
||||
point: Point;
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ import {
|
||||
Address,
|
||||
Center,
|
||||
Civility,
|
||||
DateTime, SetCivility,
|
||||
DateTime, SetAddress, SetCivility,
|
||||
User,
|
||||
} from "ChillMainAssets/types";
|
||||
|
||||
@@ -111,6 +111,9 @@ export interface ThirdpartyCategory {
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Associate an existing ThirdParty during write operation.
|
||||
*/
|
||||
export interface SetThirdParty {
|
||||
readonly type: "thirdparty";
|
||||
id: number;
|
||||
@@ -129,9 +132,7 @@ export interface ThirdPartyWrite {
|
||||
email: string;
|
||||
telephone: string;
|
||||
telephone2: string;
|
||||
address: null|{
|
||||
address_id: number;
|
||||
}
|
||||
address: null|SetAddress;
|
||||
comment: string;
|
||||
parent: SetThirdParty|null;
|
||||
}
|
||||
|
||||
@@ -336,7 +336,7 @@ const context = computed(() => {
|
||||
defaults: (window as any).addaddress,
|
||||
}
|
||||
if (thirdParty.value.address) {
|
||||
ctx.addressId = thirdParty.value.address.address_id
|
||||
ctx.addressId = thirdParty.value.address.id
|
||||
ctx.edit = true
|
||||
}
|
||||
return ctx
|
||||
@@ -385,8 +385,9 @@ async function loadData(): Promise<void> {
|
||||
if (!props.id) return Promise.resolve()
|
||||
}
|
||||
|
||||
function submitAddress(payload: { address_id: number }) {
|
||||
// TODO
|
||||
function submitAddress(payload: { addressId: number }) {
|
||||
console.log(payload);
|
||||
thirdParty.value.address = {id: payload.addressId};
|
||||
}
|
||||
|
||||
function addQueryItem(field: 'name' | 'firstName', queryItem: string) {
|
||||
|
||||
Reference in New Issue
Block a user