refactor: refs #7869 modified max months data
This commit is contained in:
parent
fad667444c
commit
807d5f12fa
|
@ -80,6 +80,8 @@ const exclusionGeoCreate = async () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const exclusionCreate = async () => {
|
const exclusionCreate = async () => {
|
||||||
|
const defaultMonths = await axios.get('ZoneConfigs');
|
||||||
|
const nMonths = defaultMonths.data[0].defaultMonths;
|
||||||
const body = {
|
const body = {
|
||||||
dated: dated.value,
|
dated: dated.value,
|
||||||
};
|
};
|
||||||
|
@ -87,7 +89,7 @@ const exclusionCreate = async () => {
|
||||||
for (const id of zoneIds) {
|
for (const id of zoneIds) {
|
||||||
const url = `Zones/${id}/exclusions`;
|
const url = `Zones/${id}/exclusions`;
|
||||||
let today = moment(dated.value);
|
let today = moment(dated.value);
|
||||||
let lastDay = today.clone().add(4, 'months').endOf('month');
|
let lastDay = today.clone().add(nMonths, 'months').endOf('month');
|
||||||
|
|
||||||
const { data } = await axios.get(`Zones/getEventsFiltered`, {
|
const { data } = await axios.get(`Zones/getEventsFiltered`, {
|
||||||
params: {
|
params: {
|
||||||
|
|
|
@ -67,6 +67,9 @@ const inclusionType = computed({
|
||||||
const arrayData = useArrayData('ZoneEvents');
|
const arrayData = useArrayData('ZoneEvents');
|
||||||
|
|
||||||
const createEvent = async () => {
|
const createEvent = async () => {
|
||||||
|
const defaultMonths = await axios.get('ZoneConfigs');
|
||||||
|
const nMonths = defaultMonths.data[0].defaultMonths;
|
||||||
|
|
||||||
eventInclusionFormData.value.weekDays = weekdayStore.toSet(
|
eventInclusionFormData.value.weekDays = weekdayStore.toSet(
|
||||||
eventInclusionFormData.value.wdays,
|
eventInclusionFormData.value.wdays,
|
||||||
eventInclusionFormData.value.wdays,
|
eventInclusionFormData.value.wdays,
|
||||||
|
@ -85,7 +88,7 @@ const createEvent = async () => {
|
||||||
let today = eventInclusionFormData.value.dated
|
let today = eventInclusionFormData.value.dated
|
||||||
? moment(eventInclusionFormData.value.dated)
|
? moment(eventInclusionFormData.value.dated)
|
||||||
: moment(dated.value);
|
: moment(dated.value);
|
||||||
let lastDay = today.clone().add(4, 'months').endOf('month');
|
let lastDay = today.clone().add(nMonths, 'months').endOf('month');
|
||||||
|
|
||||||
const { data } = await axios.get(`Zones/getEventsFiltered`, {
|
const { data } = await axios.get(`Zones/getEventsFiltered`, {
|
||||||
params: {
|
params: {
|
||||||
|
|
Loading…
Reference in New Issue