Compare commits
5 Commits
1.6.25-alp
...
developmen
Author | SHA1 | Date |
---|---|---|
|
2c92d4b8b3 | |
|
58e062dd6c | |
|
e1d8975dda | |
|
e25ad6500f | |
|
7bb539db0c |
|
@ -21,6 +21,19 @@ export class MidtransService {
|
||||||
return diffInHours > 24;
|
return diffInHours > 24;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isCreatedMoreThan24HoursAgo(unixTimestamp) {
|
||||||
|
const date = moment.unix(unixTimestamp);
|
||||||
|
const now = moment();
|
||||||
|
const diffInHours = now.diff(date, 'hours');
|
||||||
|
return diffInHours > 24;
|
||||||
|
}
|
||||||
|
|
||||||
|
isBookingDateExpired(bookingDate) {
|
||||||
|
const bookingDateMoment = moment(bookingDate);
|
||||||
|
const today = moment().startOf('day');
|
||||||
|
return bookingDateMoment.isBefore(today);
|
||||||
|
}
|
||||||
|
|
||||||
get midtransInstance() {
|
get midtransInstance() {
|
||||||
return new Snap({
|
return new Snap({
|
||||||
isProduction: false,
|
isProduction: false,
|
||||||
|
@ -38,15 +51,17 @@ export class MidtransService {
|
||||||
const responses = [];
|
const responses = [];
|
||||||
|
|
||||||
for (const transaction of pendingIds) {
|
for (const transaction of pendingIds) {
|
||||||
const { id, invoice_date } = transaction;
|
const { id, booking_date, created_at } = transaction;
|
||||||
let status;
|
let status;
|
||||||
try {
|
try {
|
||||||
status = await this.getStatus(id);
|
status = await this.getStatus(id);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
status = {
|
status = {
|
||||||
order_id: id,
|
order_id: id,
|
||||||
transaction_status: this.isMoreThan24HoursAgo(invoice_date)
|
transaction_status:
|
||||||
? 'cancel'
|
this.isCreatedMoreThan24HoursAgo(created_at) ||
|
||||||
|
this.isBookingDateExpired(booking_date)
|
||||||
|
? 'expired'
|
||||||
: 'pending',
|
: 'pending',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,13 +52,12 @@ export class CreateItemManager extends BaseCreateManager<ItemEntity> {
|
||||||
? [
|
? [
|
||||||
{
|
{
|
||||||
column: 'name',
|
column: 'name',
|
||||||
query: `(status = '${STATUS.ACTIVE}' AND (${this.tableName}.time_group_id Is Null OR ${this.tableName}.time_group_id = '${timeGroupId}'))`,
|
query: `((${this.tableName}.time_group_id Is Null OR ${this.tableName}.time_group_id = '${timeGroupId}'))`,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
: [
|
: [
|
||||||
{
|
{
|
||||||
column: 'name',
|
column: 'name',
|
||||||
query: `(status = '${STATUS.ACTIVE}')`,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,7 @@ export class UpdateItemManager extends BaseUpdateManager<ItemEntity> {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
column: 'name',
|
column: 'name',
|
||||||
query: `(status = '${STATUS.ACTIVE}' AND (${this.tableName}.time_group_id Is Null OR ${this.tableName}.time_group_id = '${timeGroupId}'))`,
|
query: `((${this.tableName}.time_group_id Is Null OR ${this.tableName}.time_group_id = '${timeGroupId}'))`,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,8 @@ import {
|
||||||
Param,
|
Param,
|
||||||
RelationParam,
|
RelationParam,
|
||||||
} from 'src/core/modules/domain/entities/base-filter.entity';
|
} from 'src/core/modules/domain/entities/base-filter.entity';
|
||||||
|
import * as moment from 'moment';
|
||||||
|
import { ORDER_TYPE } from 'src/core/strings/constants/base.constants';
|
||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
// Implementasikan filter by start_time, end_timen, dan max_usage_time
|
// Implementasikan filter by start_time, end_timen, dan max_usage_time
|
||||||
|
@ -13,6 +15,10 @@ import {
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class IndexPublicTimeGroupManager extends BaseIndexManager<TimeGroupEntity> {
|
export class IndexPublicTimeGroupManager extends BaseIndexManager<TimeGroupEntity> {
|
||||||
async prepareData(): Promise<void> {
|
async prepareData(): Promise<void> {
|
||||||
|
Object.assign(this.filterParam, {
|
||||||
|
order_by: `${this.tableName}.start_time`,
|
||||||
|
order_type: ORDER_TYPE.ASC,
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,6 +66,15 @@ export class IndexPublicTimeGroupManager extends BaseIndexManager<TimeGroupEntit
|
||||||
queryBuilder: SelectQueryBuilder<TimeGroupEntity>,
|
queryBuilder: SelectQueryBuilder<TimeGroupEntity>,
|
||||||
): SelectQueryBuilder<TimeGroupEntity> {
|
): SelectQueryBuilder<TimeGroupEntity> {
|
||||||
queryBuilder.andWhere(`items.id is not null`);
|
queryBuilder.andWhere(`items.id is not null`);
|
||||||
|
|
||||||
|
if (!this.filterParam.date) {
|
||||||
|
const currentTime = moment().utcOffset('+07:00').format('HH:mm:ss');
|
||||||
|
|
||||||
|
queryBuilder.andWhere(`${this.tableName}.end_time >= :current_time`, {
|
||||||
|
current_time: currentTime,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return queryBuilder;
|
return queryBuilder;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,4 +30,12 @@ export class FilterTimeGroupDto
|
||||||
@ApiProperty({ type: 'string', required: false })
|
@ApiProperty({ type: 'string', required: false })
|
||||||
@ValidateIf((body) => body.max_usage_time_to)
|
@ValidateIf((body) => body.max_usage_time_to)
|
||||||
max_usage_time_to: string;
|
max_usage_time_to: string;
|
||||||
|
|
||||||
|
@ApiProperty({
|
||||||
|
type: Date,
|
||||||
|
required: false,
|
||||||
|
example: '2024-01-01',
|
||||||
|
})
|
||||||
|
@ValidateIf((body) => body.date)
|
||||||
|
date: Date;
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,27 +51,28 @@ export class TicketDataService extends BaseDataService<QueueTicket> {
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
// if (!order) {
|
if (!order) {
|
||||||
// const { customer_name, customer_phone } =
|
const { customer_name, customer_phone } =
|
||||||
// await this.transaction.findOneOrFail({
|
await this.transaction.findOneOrFail({
|
||||||
// where: {
|
where: {
|
||||||
// id,
|
id,
|
||||||
// },
|
booking_date: new Date(),
|
||||||
// });
|
},
|
||||||
|
});
|
||||||
|
|
||||||
// const start = moment().startOf('day').valueOf();
|
const start = moment().startOf('day').valueOf();
|
||||||
// const end = moment().endOf('day').valueOf();
|
const end = moment().endOf('day').valueOf();
|
||||||
// const order = this.order.findOneOrFail({
|
const order = this.order.findOneOrFail({
|
||||||
// relations: ['tickets'],
|
relations: ['tickets'],
|
||||||
// where: {
|
where: {
|
||||||
// customer: customer_name,
|
customer: customer_name,
|
||||||
// phone: customer_phone,
|
phone: customer_phone,
|
||||||
// date: Between(start, end),
|
date: Between(start, end),
|
||||||
// },
|
},
|
||||||
// });
|
});
|
||||||
|
|
||||||
// return order;
|
return order;
|
||||||
// }
|
}
|
||||||
|
|
||||||
return order;
|
return order;
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ export class GenerateQueueManager {
|
||||||
async generate(transaction: TransactionModel) {
|
async generate(transaction: TransactionModel) {
|
||||||
const date = transaction.booking_date ?? transaction.invoice_date;
|
const date = transaction.booking_date ?? transaction.invoice_date;
|
||||||
const queue_date = moment(date, 'YYYY-MM-DD').unix();
|
const queue_date = moment(date, 'YYYY-MM-DD').unix();
|
||||||
|
const isToday = moment(date, 'YYYY-MM-DD').isSame(moment(), 'day');
|
||||||
|
|
||||||
const { id, customer_name, customer_phone, invoice_code } = transaction;
|
const { id, customer_name, customer_phone, invoice_code } = transaction;
|
||||||
|
|
||||||
|
@ -40,10 +41,9 @@ export class GenerateQueueManager {
|
||||||
|
|
||||||
const items = this.generateItems(transaction.items);
|
const items = this.generateItems(transaction.items);
|
||||||
|
|
||||||
const existTicket = await this.ticketService.ticketByUser(
|
const existTicket = isToday
|
||||||
customer_name,
|
? await this.ticketService.ticketByUser(customer_name, customer_phone)
|
||||||
customer_phone,
|
: null;
|
||||||
);
|
|
||||||
|
|
||||||
const insertTickets: QueueTicket[] = [];
|
const insertTickets: QueueTicket[] = [];
|
||||||
if (customer_name && customer_phone && existTicket) {
|
if (customer_name && customer_phone && existTicket) {
|
||||||
|
|
|
@ -8,7 +8,7 @@ import {
|
||||||
} from 'src/core/strings/constants/base.constants';
|
} from 'src/core/strings/constants/base.constants';
|
||||||
import { Repository } from 'typeorm';
|
import { Repository } from 'typeorm';
|
||||||
import { BaseReadService } from 'src/core/modules/data/service/base-read.service';
|
import { BaseReadService } from 'src/core/modules/data/service/base-read.service';
|
||||||
import { TransactionPaymentType } from '../../constants';
|
import { TransactionPaymentType, TransactionType } from '../../constants';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class TransactionReadService extends BaseReadService<TransactionEntity> {
|
export class TransactionReadService extends BaseReadService<TransactionEntity> {
|
||||||
|
@ -24,8 +24,9 @@ export class TransactionReadService extends BaseReadService<TransactionEntity> {
|
||||||
where: {
|
where: {
|
||||||
status: STATUS.PENDING,
|
status: STATUS.PENDING,
|
||||||
payment_type: TransactionPaymentType.MIDTRANS,
|
payment_type: TransactionPaymentType.MIDTRANS,
|
||||||
|
type: TransactionType.ONLINE,
|
||||||
},
|
},
|
||||||
select: ['id', 'invoice_date'],
|
select: ['id', 'invoice_date', 'created_at', 'booking_date'],
|
||||||
});
|
});
|
||||||
|
|
||||||
return transactions;
|
return transactions;
|
||||||
|
|
|
@ -332,6 +332,8 @@ export class WhatsappService {
|
||||||
const momentDate = moment(data.time);
|
const momentDate = moment(data.time);
|
||||||
const fallbackValue = momentDate.locale('id').format('dddd, DD MMMM YYYY');
|
const fallbackValue = momentDate.locale('id').format('dddd, DD MMMM YYYY');
|
||||||
|
|
||||||
|
const currentDate = moment().locale('id').format('DD MMMM YYYY');
|
||||||
|
|
||||||
const formattedTotal = new Intl.NumberFormat('id-ID', {
|
const formattedTotal = new Intl.NumberFormat('id-ID', {
|
||||||
style: 'currency',
|
style: 'currency',
|
||||||
currency: 'IDR',
|
currency: 'IDR',
|
||||||
|
@ -364,6 +366,11 @@ export class WhatsappService {
|
||||||
parameter_name: 'booking_date',
|
parameter_name: 'booking_date',
|
||||||
text: fallbackValue,
|
text: fallbackValue,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 'text',
|
||||||
|
parameter_name: 'created_date',
|
||||||
|
text: currentDate,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: 'text',
|
type: 'text',
|
||||||
parameter_name: 'booking_code',
|
parameter_name: 'booking_code',
|
||||||
|
|
Loading…
Reference in New Issue