Compare commits
2 Commits
4a6fb3f61e
...
8eb2156845
Author | SHA1 | Date |
---|---|---|
adriano | 8eb2156845 | |
adriano | b85aa4d5ba |
|
@ -44,7 +44,6 @@ export const createUser = async (
|
||||||
email: user_tax_id || user_email,
|
email: user_tax_id || user_email,
|
||||||
password: "12345",
|
password: "12345",
|
||||||
name: user_first_name,
|
name: user_first_name,
|
||||||
positionCompany: user_title,
|
|
||||||
profile: "user",
|
profile: "user",
|
||||||
ignoreThrow: true
|
ignoreThrow: true
|
||||||
});
|
});
|
||||||
|
@ -205,7 +204,6 @@ export const updateUser = async (
|
||||||
const userData = {
|
const userData = {
|
||||||
email: user_tax_id || user_email,
|
email: user_tax_id || user_email,
|
||||||
name: user_first_name,
|
name: user_first_name,
|
||||||
positionCompany: user_title
|
|
||||||
};
|
};
|
||||||
|
|
||||||
let user: any = await UpdateUserService({
|
let user: any = await UpdateUserService({
|
||||||
|
|
|
@ -143,7 +143,6 @@ export const store = async (req: Request, res: Response): Promise<Response> => {
|
||||||
password,
|
password,
|
||||||
name,
|
name,
|
||||||
profile,
|
profile,
|
||||||
positionCompany,
|
|
||||||
positionId,
|
positionId,
|
||||||
queueIds,
|
queueIds,
|
||||||
transferToOtherQueues
|
transferToOtherQueues
|
||||||
|
@ -170,7 +169,6 @@ export const store = async (req: Request, res: Response): Promise<Response> => {
|
||||||
email,
|
email,
|
||||||
password,
|
password,
|
||||||
name,
|
name,
|
||||||
positionCompany,
|
|
||||||
positionId,
|
positionId,
|
||||||
profile,
|
profile,
|
||||||
queueIds,
|
queueIds,
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
import { QueryInterface, DataTypes } from "sequelize";
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
up: (queryInterface: QueryInterface) => {
|
||||||
|
return queryInterface.removeColumn("Users", "positionCompany");
|
||||||
|
},
|
||||||
|
|
||||||
|
down: (queryInterface: QueryInterface) => {
|
||||||
|
return queryInterface.addColumn("Users", "positionCompany", {
|
||||||
|
type: DataTypes.STRING,
|
||||||
|
allowNull: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
|
@ -4,7 +4,6 @@ import User from "../models/User";
|
||||||
interface SerializedUser {
|
interface SerializedUser {
|
||||||
id: number;
|
id: number;
|
||||||
name: string;
|
name: string;
|
||||||
positionCompany: string;
|
|
||||||
positionId: string | number;
|
positionId: string | number;
|
||||||
position: object;
|
position: object;
|
||||||
email: string;
|
email: string;
|
||||||
|
@ -16,7 +15,6 @@ export const SerializeUser = (user: User): SerializedUser => {
|
||||||
return {
|
return {
|
||||||
id: user.id,
|
id: user.id,
|
||||||
name: user.name,
|
name: user.name,
|
||||||
positionCompany: user.positionCompany,
|
|
||||||
positionId: user.positionId,
|
positionId: user.positionId,
|
||||||
position: user.position,
|
position: user.position,
|
||||||
email: user.email,
|
email: user.email,
|
||||||
|
|
|
@ -45,9 +45,6 @@ class User extends Model<User> {
|
||||||
@Column
|
@Column
|
||||||
tokenVersion: number;
|
tokenVersion: number;
|
||||||
|
|
||||||
@Column
|
|
||||||
positionCompany: string;
|
|
||||||
|
|
||||||
@Column
|
@Column
|
||||||
secondaryId: string;
|
secondaryId: string;
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@ import Queue from "../../models/Queue";
|
||||||
interface SerializedUser {
|
interface SerializedUser {
|
||||||
id: number;
|
id: number;
|
||||||
name: string;
|
name: string;
|
||||||
positionCompany: string;
|
|
||||||
email: string;
|
email: string;
|
||||||
profile: string;
|
profile: string;
|
||||||
queues: Queue[];
|
queues: Queue[];
|
||||||
|
|
|
@ -9,7 +9,6 @@ interface Request {
|
||||||
email: string;
|
email: string;
|
||||||
password: string;
|
password: string;
|
||||||
name: string;
|
name: string;
|
||||||
positionCompany?: string;
|
|
||||||
positionId?: string;
|
positionId?: string;
|
||||||
queueIds?: number[];
|
queueIds?: number[];
|
||||||
profile?: string;
|
profile?: string;
|
||||||
|
@ -20,7 +19,6 @@ interface Request {
|
||||||
interface Response {
|
interface Response {
|
||||||
email: string;
|
email: string;
|
||||||
name: string;
|
name: string;
|
||||||
positionCompany: string;
|
|
||||||
positionId: string;
|
positionId: string;
|
||||||
id: number;
|
id: number;
|
||||||
profile: string;
|
profile: string;
|
||||||
|
@ -31,7 +29,6 @@ const CreateUserService = async ({
|
||||||
email,
|
email,
|
||||||
password,
|
password,
|
||||||
name,
|
name,
|
||||||
positionCompany,
|
|
||||||
positionId,
|
positionId,
|
||||||
queueIds = [],
|
queueIds = [],
|
||||||
profile = "master",
|
profile = "master",
|
||||||
|
@ -85,7 +82,6 @@ const CreateUserService = async ({
|
||||||
email,
|
email,
|
||||||
password,
|
password,
|
||||||
name,
|
name,
|
||||||
positionCompany,
|
|
||||||
positionId: !positionId ? null : positionId,
|
positionId: !positionId ? null : positionId,
|
||||||
profile,
|
profile,
|
||||||
transferToOtherQueues: transferToOtherQueues? transferToOtherQueues : false
|
transferToOtherQueues: transferToOtherQueues? transferToOtherQueues : false
|
||||||
|
|
|
@ -75,7 +75,7 @@ const ListUser = async ({
|
||||||
const users = await User.findAll({
|
const users = await User.findAll({
|
||||||
where: where_clause,
|
where: where_clause,
|
||||||
raw,
|
raw,
|
||||||
attributes: ["id", "name", "email", "positionCompany", "transferToOtherQueues"],
|
attributes: ["id", "name", "email", "transferToOtherQueues"],
|
||||||
|
|
||||||
include: [
|
include: [
|
||||||
{ model: Queue, as: "queues", attributes: ["id", "name", "color"] }
|
{ model: Queue, as: "queues", attributes: ["id", "name", "color"] }
|
||||||
|
|
|
@ -64,7 +64,6 @@ const ListUsersService = async ({
|
||||||
"name",
|
"name",
|
||||||
"id",
|
"id",
|
||||||
"email",
|
"email",
|
||||||
"positionCompany",
|
|
||||||
"profile",
|
"profile",
|
||||||
"createdAt",
|
"createdAt",
|
||||||
"transferToOtherQueues"
|
"transferToOtherQueues"
|
||||||
|
|
|
@ -10,7 +10,6 @@ const ShowUserService = async (id: string | number): Promise<User> => {
|
||||||
"id",
|
"id",
|
||||||
"email",
|
"email",
|
||||||
"profile",
|
"profile",
|
||||||
"positionCompany",
|
|
||||||
"positionId",
|
"positionId",
|
||||||
"tokenVersion",
|
"tokenVersion",
|
||||||
"transferToOtherQueues"
|
"transferToOtherQueues"
|
||||||
|
|
|
@ -8,7 +8,6 @@ interface UserData {
|
||||||
email?: string;
|
email?: string;
|
||||||
password?: string;
|
password?: string;
|
||||||
name?: string;
|
name?: string;
|
||||||
positionCompany?: string;
|
|
||||||
positionId?: string;
|
positionId?: string;
|
||||||
profile?: string;
|
profile?: string;
|
||||||
queueIds?: number[];
|
queueIds?: number[];
|
||||||
|
@ -74,7 +73,6 @@ const UpdateUserService = async ({
|
||||||
password,
|
password,
|
||||||
profile,
|
profile,
|
||||||
name,
|
name,
|
||||||
positionCompany,
|
|
||||||
positionId,
|
positionId,
|
||||||
queueIds = [],
|
queueIds = [],
|
||||||
transferToOtherQueues
|
transferToOtherQueues
|
||||||
|
@ -90,7 +88,6 @@ const UpdateUserService = async ({
|
||||||
email,
|
email,
|
||||||
password,
|
password,
|
||||||
profile,
|
profile,
|
||||||
positionCompany,
|
|
||||||
positionId: !positionId ? null : positionId,
|
positionId: !positionId ? null : positionId,
|
||||||
name,
|
name,
|
||||||
transferToOtherQueues
|
transferToOtherQueues
|
||||||
|
|
|
@ -85,7 +85,6 @@ const UserModal = ({ open, onClose, userId, }) => {
|
||||||
name: "",
|
name: "",
|
||||||
email: "",
|
email: "",
|
||||||
password: "",
|
password: "",
|
||||||
positionCompany: "",
|
|
||||||
profile: "user",
|
profile: "user",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -262,16 +261,6 @@ const UserModal = ({ open, onClose, userId, }) => {
|
||||||
fullWidth
|
fullWidth
|
||||||
/>
|
/>
|
||||||
<div className={classes.multFieldLine}>
|
<div className={classes.multFieldLine}>
|
||||||
{/* <Field
|
|
||||||
as={TextField}
|
|
||||||
label="Cargo"
|
|
||||||
name="positionCompany"
|
|
||||||
error={touched.name && Boolean(errors.name)}
|
|
||||||
helperText={touched.name && errors.name}
|
|
||||||
variant="outlined"
|
|
||||||
margin="dense"
|
|
||||||
fullWidth
|
|
||||||
/> */}
|
|
||||||
<label style={{display: 'flex', alignItems:'center'}}>
|
<label style={{display: 'flex', alignItems:'center'}}>
|
||||||
Transferir para outras filas
|
Transferir para outras filas
|
||||||
<Switch
|
<Switch
|
||||||
|
|
Loading…
Reference in New Issue