236 lines
2.4 KiB
JavaScript
236 lines
2.4 KiB
JavaScript
const config = require('../../config');
|
|
const providers = config.providers;
|
|
const crypto = require('crypto');
|
|
const bcrypt = require('bcrypt');
|
|
const moment = require('moment');
|
|
|
|
module.exports = function(sequelize, DataTypes) {
|
|
const fee_rules = sequelize.define(
|
|
'fee_rules',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
name: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
action: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"post_daily_job",
|
|
|
|
|
|
"post_monthly_job",
|
|
|
|
|
|
"post_ad",
|
|
|
|
|
|
"boost_post",
|
|
|
|
|
|
"paid_notification",
|
|
|
|
|
|
"reveal_phone",
|
|
|
|
|
|
"like",
|
|
|
|
|
|
"comment",
|
|
|
|
|
|
"report",
|
|
|
|
|
|
"tier_purchase",
|
|
|
|
|
|
"subscription_purchase",
|
|
|
|
|
|
"link_fee"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
zone_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"any",
|
|
|
|
|
|
"city",
|
|
|
|
|
|
"village"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
tier_minimum: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"starter",
|
|
|
|
|
|
"bronze",
|
|
|
|
|
|
"silver",
|
|
|
|
|
|
"gold",
|
|
|
|
|
|
"platinum",
|
|
|
|
|
|
"plutonium"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
base_fee_rwf: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
min_payable_percent: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
max_discount_percent: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
allows_free_when_eligible: {
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
|
|
|
|
|
|
},
|
|
|
|
is_active: {
|
|
type: DataTypes.BOOLEAN,
|
|
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
|
|
|
|
|
|
},
|
|
|
|
notes: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
fee_rules.associate = (db) => {
|
|
|
|
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//end loop
|
|
|
|
|
|
|
|
db.fee_rules.belongsTo(db.content_categories, {
|
|
as: 'category',
|
|
foreignKey: {
|
|
name: 'categoryId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.fee_rules.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.fee_rules.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return fee_rules;
|
|
};
|
|
|
|
|