forked from verdnatura/salix-front
Merge branch 'dev' into 6943_customer_spec
This commit is contained in:
commit
6bb6cd8d93
|
@ -108,11 +108,11 @@ watch(
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => postcodeFormData.provinceFk,
|
() => postcodeFormData.provinceFk,
|
||||||
async (newProvinceFk) => {
|
async (newProvinceFk, oldValueFk) => {
|
||||||
if (Array.isArray(newProvinceFk)) {
|
if (Array.isArray(newProvinceFk)) {
|
||||||
newProvinceFk = newProvinceFk[0];
|
newProvinceFk = newProvinceFk[0];
|
||||||
}
|
}
|
||||||
if (newProvinceFk !== postcodeFormData.provinceFk) {
|
if (newProvinceFk !== oldValueFk) {
|
||||||
await townsFetchDataRef.value.fetch({
|
await townsFetchDataRef.value.fetch({
|
||||||
where: { provinceFk: newProvinceFk },
|
where: { provinceFk: newProvinceFk },
|
||||||
});
|
});
|
||||||
|
@ -147,13 +147,7 @@ async function handleCountries(data) {
|
||||||
auto-load
|
auto-load
|
||||||
url="Towns/location"
|
url="Towns/location"
|
||||||
/>
|
/>
|
||||||
<FetchData
|
|
||||||
@on-fetch="handleCountries"
|
|
||||||
:sort-by="['name ASC']"
|
|
||||||
:limit="30"
|
|
||||||
auto-load
|
|
||||||
url="Countries"
|
|
||||||
/>
|
|
||||||
<FormModelPopup
|
<FormModelPopup
|
||||||
url-create="postcodes"
|
url-create="postcodes"
|
||||||
model="postcode"
|
model="postcode"
|
||||||
|
@ -219,8 +213,10 @@ async function handleCountries(data) {
|
||||||
@on-province-created="onProvinceCreated"
|
@on-province-created="onProvinceCreated"
|
||||||
/>
|
/>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
|
url="Countries"
|
||||||
|
:sort-by="['name ASC']"
|
||||||
:label="t('Country')"
|
:label="t('Country')"
|
||||||
:options="countriesOptions"
|
@update:options="handleCountries"
|
||||||
hide-selected
|
hide-selected
|
||||||
option-label="name"
|
option-label="name"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
|
|
|
@ -101,7 +101,7 @@ const columns = computed(() => [
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'itemPackingTypeFk',
|
name: 'itemPackingTypeFk',
|
||||||
label: t('ticketSale.packaging'),
|
label: t('ticketSale.packaging'),
|
||||||
format: (row) => getItemPackagingType(row),
|
format: (row) => getItemPackagingType(row.ticketSales),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
align: 'right',
|
||||||
|
@ -151,13 +151,21 @@ const setShippedColor = (date) => {
|
||||||
if (difference < 0) return 'success';
|
if (difference < 0) return 'success';
|
||||||
};
|
};
|
||||||
|
|
||||||
const getItemPackagingType = (row) => {
|
const getItemPackagingType = (ticketSales) => {
|
||||||
const packagingType = row?.ticketSales
|
if (!ticketSales?.length) return '-';
|
||||||
.map((sale) => sale.item?.itemPackingTypeFk || '-')
|
|
||||||
.filter((value) => value !== '-')
|
|
||||||
.join(', ');
|
|
||||||
|
|
||||||
return dashIfEmpty(packagingType);
|
const packagingTypes = ticketSales.reduce((types, sale) => {
|
||||||
|
const { itemPackingTypeFk } = sale.item;
|
||||||
|
if (
|
||||||
|
!types.includes(itemPackingTypeFk) &&
|
||||||
|
(itemPackingTypeFk === 'H' || itemPackingTypeFk === 'V')
|
||||||
|
) {
|
||||||
|
types.push(itemPackingTypeFk);
|
||||||
|
}
|
||||||
|
return types;
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return dashIfEmpty(packagingTypes.join(', ') || '-');
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue