BOD-21 Bug fixes for production columns.
This commit is contained in:
@@ -5754,6 +5754,27 @@
|
|||||||
</translation>
|
</translation>
|
||||||
</translations>
|
</translations>
|
||||||
</concept_node>
|
</concept_node>
|
||||||
|
<concept_node>
|
||||||
|
<name>addtoproduction</name>
|
||||||
|
<definition_loaded>false</definition_loaded>
|
||||||
|
<description></description>
|
||||||
|
<comment></comment>
|
||||||
|
<default_text></default_text>
|
||||||
|
<translations>
|
||||||
|
<translation>
|
||||||
|
<language>en-US</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>es-MX</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>fr-CA</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
</translations>
|
||||||
|
</concept_node>
|
||||||
<concept_node>
|
<concept_node>
|
||||||
<name>changestatus</name>
|
<name>changestatus</name>
|
||||||
<definition_loaded>false</definition_loaded>
|
<definition_loaded>false</definition_loaded>
|
||||||
@@ -5906,6 +5927,27 @@
|
|||||||
<folder_node>
|
<folder_node>
|
||||||
<name>errors</name>
|
<name>errors</name>
|
||||||
<children>
|
<children>
|
||||||
|
<concept_node>
|
||||||
|
<name>addingtoproduction</name>
|
||||||
|
<definition_loaded>false</definition_loaded>
|
||||||
|
<description></description>
|
||||||
|
<comment></comment>
|
||||||
|
<default_text></default_text>
|
||||||
|
<translations>
|
||||||
|
<translation>
|
||||||
|
<language>en-US</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>es-MX</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>fr-CA</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
</translations>
|
||||||
|
</concept_node>
|
||||||
<concept_node>
|
<concept_node>
|
||||||
<name>creating</name>
|
<name>creating</name>
|
||||||
<definition_loaded>false</definition_loaded>
|
<definition_loaded>false</definition_loaded>
|
||||||
@@ -8876,6 +8918,27 @@
|
|||||||
<folder_node>
|
<folder_node>
|
||||||
<name>successes</name>
|
<name>successes</name>
|
||||||
<children>
|
<children>
|
||||||
|
<concept_node>
|
||||||
|
<name>addedtoproduction</name>
|
||||||
|
<definition_loaded>false</definition_loaded>
|
||||||
|
<description></description>
|
||||||
|
<comment></comment>
|
||||||
|
<default_text></default_text>
|
||||||
|
<translations>
|
||||||
|
<translation>
|
||||||
|
<language>en-US</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>es-MX</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>fr-CA</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
</translations>
|
||||||
|
</concept_node>
|
||||||
<concept_node>
|
<concept_node>
|
||||||
<name>all_deleted</name>
|
<name>all_deleted</name>
|
||||||
<definition_loaded>false</definition_loaded>
|
<definition_loaded>false</definition_loaded>
|
||||||
|
|||||||
@@ -15,14 +15,14 @@ import { auth } from "../firebase/firebase.utils";
|
|||||||
import errorLink from "../graphql/apollo-error-handling";
|
import errorLink from "../graphql/apollo-error-handling";
|
||||||
import App from "./App";
|
import App from "./App";
|
||||||
|
|
||||||
import LogRocket from 'logrocket';
|
import LogRocket from "logrocket";
|
||||||
LogRocket.init('gvfvfw/bodyshopapp');
|
LogRocket.init("gvfvfw/bodyshopapp");
|
||||||
|
|
||||||
export default class AppContainer extends Component {
|
export default class AppContainer extends Component {
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
const httpLink = new HttpLink({
|
const httpLink = new HttpLink({
|
||||||
uri: process.env.REACT_APP_GRAPHQL_ENDPOINT
|
uri: process.env.REACT_APP_GRAPHQL_ENDPOINT,
|
||||||
});
|
});
|
||||||
|
|
||||||
const wsLink = new WebSocketLink({
|
const wsLink = new WebSocketLink({
|
||||||
@@ -36,18 +36,18 @@ export default class AppContainer extends Component {
|
|||||||
if (token) {
|
if (token) {
|
||||||
return {
|
return {
|
||||||
headers: {
|
headers: {
|
||||||
authorization: token ? `Bearer ${token}` : ""
|
authorization: token ? `Bearer ${token}` : "",
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
const subscriptionMiddleware = {
|
const subscriptionMiddleware = {
|
||||||
applyMiddleware: async (options, next) => {
|
applyMiddleware: async (options, next) => {
|
||||||
options.authToken = await auth.currentUser.getIdToken(true);
|
options.authToken = await auth.currentUser.getIdToken(true);
|
||||||
next();
|
next();
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
wsLink.subscriptionClient.use([subscriptionMiddleware]);
|
wsLink.subscriptionClient.use([subscriptionMiddleware]);
|
||||||
|
|
||||||
@@ -73,13 +73,13 @@ export default class AppContainer extends Component {
|
|||||||
);
|
);
|
||||||
|
|
||||||
const authLink = setContext((_, { headers }) => {
|
const authLink = setContext((_, { headers }) => {
|
||||||
return auth.currentUser.getIdToken().then(token => {
|
return auth.currentUser.getIdToken().then((token) => {
|
||||||
if (token) {
|
if (token) {
|
||||||
return {
|
return {
|
||||||
headers: {
|
headers: {
|
||||||
...headers,
|
...headers,
|
||||||
authorization: token ? `Bearer ${token}` : ""
|
authorization: token ? `Bearer ${token}` : "",
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
return { headers };
|
return { headers };
|
||||||
@@ -91,12 +91,12 @@ export default class AppContainer extends Component {
|
|||||||
delay: {
|
delay: {
|
||||||
initial: 300,
|
initial: 300,
|
||||||
max: 5,
|
max: 5,
|
||||||
jitter: true
|
jitter: true,
|
||||||
},
|
},
|
||||||
attempts: {
|
attempts: {
|
||||||
max: 5,
|
max: 5,
|
||||||
retryIf: (error, _operation) => !!error
|
retryIf: (error, _operation) => !!error,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const middlewares = [];
|
const middlewares = [];
|
||||||
@@ -110,7 +110,7 @@ export default class AppContainer extends Component {
|
|||||||
const client = new ApolloClient({
|
const client = new ApolloClient({
|
||||||
link: ApolloLink.from(middlewares),
|
link: ApolloLink.from(middlewares),
|
||||||
cache,
|
cache,
|
||||||
connectToDevTools: true
|
connectToDevTools: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.state = { client };
|
this.state = { client };
|
||||||
|
|||||||
@@ -0,0 +1,33 @@
|
|||||||
|
import { notification } from "antd";
|
||||||
|
import i18n from "i18next";
|
||||||
|
import { UPDATE_JOB } from "../../graphql/jobs.queries";
|
||||||
|
|
||||||
|
export default function AddToProduction(
|
||||||
|
apolloClient,
|
||||||
|
jobId,
|
||||||
|
completionCallback
|
||||||
|
) {
|
||||||
|
//get a list of all fields on the job
|
||||||
|
apolloClient
|
||||||
|
.mutate({
|
||||||
|
mutation: UPDATE_JOB,
|
||||||
|
variables: { jobId: jobId, job: { inproduction: true } },
|
||||||
|
})
|
||||||
|
.then((res) => {
|
||||||
|
notification["success"]({
|
||||||
|
message: i18n.t("jobs.successes.addedtoproduction"),
|
||||||
|
});
|
||||||
|
if (completionCallback) completionCallback();
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
notification["errors"]({
|
||||||
|
message: i18n.t("jobs.errors.addingtoproduction", {
|
||||||
|
error: JSON.stringify(error),
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
//insert the new job. call the callback with the returned ID when done.
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
import React from "react";
|
|
||||||
import { Menu, Dropdown, Button, Popconfirm } from "antd";
|
|
||||||
import { useTranslation } from "react-i18next";
|
|
||||||
import { DownCircleFilled } from "@ant-design/icons";
|
import { DownCircleFilled } from "@ant-design/icons";
|
||||||
import { Link } from "react-router-dom";
|
|
||||||
import DuplicateJob from "./jobs-detail-header-actions.duplicate";
|
|
||||||
import { useApolloClient } from "@apollo/react-hooks";
|
import { useApolloClient } from "@apollo/react-hooks";
|
||||||
|
import { Button, Dropdown, Menu, Popconfirm } from "antd";
|
||||||
|
import React from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
import { connect } from "react-redux";
|
import { connect } from "react-redux";
|
||||||
|
import { Link, useHistory } from "react-router-dom";
|
||||||
import { createStructuredSelector } from "reselect";
|
import { createStructuredSelector } from "reselect";
|
||||||
import { selectBodyshop } from "../../redux/user/user.selectors";
|
import { selectBodyshop } from "../../redux/user/user.selectors";
|
||||||
import { useHistory } from "react-router-dom";
|
import AddToProduction from "./jobs-detail-header-actions.addtoproduction.util";
|
||||||
|
import DuplicateJob from "./jobs-detail-header-actions.duplicate.util";
|
||||||
|
|
||||||
const mapStateToProps = createStructuredSelector({
|
const mapStateToProps = createStructuredSelector({
|
||||||
//currentUser: selectCurrentUser
|
//currentUser: selectCurrentUser
|
||||||
bodyshop: selectBodyshop,
|
bodyshop: selectBodyshop,
|
||||||
@@ -23,22 +23,27 @@ export function JobsDetailHeaderActions({ job, bodyshop }) {
|
|||||||
const client = useApolloClient();
|
const client = useApolloClient();
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
const statusmenu = (
|
const statusmenu = (
|
||||||
<Menu key="popovermenu">
|
<Menu key='popovermenu'>
|
||||||
<Menu.Item key="cccontract">
|
<Menu.Item key='cccontract'>
|
||||||
<Link
|
<Link
|
||||||
to={{
|
to={{
|
||||||
pathname: "/manage/courtesycars/contracts/new",
|
pathname: "/manage/courtesycars/contracts/new",
|
||||||
state: { jobId: job.id },
|
state: { jobId: job.id },
|
||||||
}}
|
}}>
|
||||||
>
|
|
||||||
{t("menus.jobsactions.newcccontract")}
|
{t("menus.jobsactions.newcccontract")}
|
||||||
</Link>
|
</Link>
|
||||||
</Menu.Item>
|
</Menu.Item>
|
||||||
<Menu.Item key="duplicatejob">
|
<Menu.Item
|
||||||
|
key='addtoproduction'
|
||||||
|
disabled={!!!job.converted}
|
||||||
|
onClick={() => AddToProduction(client, job.id)}>
|
||||||
|
{t("jobs.actions.addtoproduction")}
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Item key='duplicatejob'>
|
||||||
<Popconfirm
|
<Popconfirm
|
||||||
title={t("jobs.labels.duplicateconfirm")}
|
title={t("jobs.labels.duplicateconfirm")}
|
||||||
okText="Yes"
|
okText='Yes'
|
||||||
cancelText="No"
|
cancelText='No'
|
||||||
onClick={(e) => e.stopPropagation()}
|
onClick={(e) => e.stopPropagation()}
|
||||||
onConfirm={() =>
|
onConfirm={() =>
|
||||||
DuplicateJob(
|
DuplicateJob(
|
||||||
@@ -50,15 +55,14 @@ export function JobsDetailHeaderActions({ job, bodyshop }) {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
getPopupContainer={(trigger) => trigger.parentNode}
|
getPopupContainer={(trigger) => trigger.parentNode}>
|
||||||
>
|
|
||||||
{t("menus.jobsactions.duplicate")}
|
{t("menus.jobsactions.duplicate")}
|
||||||
</Popconfirm>
|
</Popconfirm>
|
||||||
</Menu.Item>
|
</Menu.Item>
|
||||||
</Menu>
|
</Menu>
|
||||||
);
|
);
|
||||||
return (
|
return (
|
||||||
<Dropdown overlay={statusmenu} key="changestatus">
|
<Dropdown overlay={statusmenu} key='changestatus'>
|
||||||
<Button>
|
<Button>
|
||||||
{t("general.labels.actions")} <DownCircleFilled />
|
{t("general.labels.actions")} <DownCircleFilled />
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -1,44 +1,41 @@
|
|||||||
import React from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import Board from "react-trello";
|
import Board from "react-trello";
|
||||||
import { Card } from "antd";
|
import { Card } from "antd";
|
||||||
import LoadingSpinner from "../loading-spinner/loading-spinner.component";
|
import LoadingSpinner from "../loading-spinner/loading-spinner.component";
|
||||||
|
import { selectBodyshop } from "../../redux/user/user.selectors";
|
||||||
|
import { connect } from "react-redux";
|
||||||
|
import { createStructuredSelector } from "reselect";
|
||||||
|
const mapStateToProps = createStructuredSelector({
|
||||||
|
bodyshop: selectBodyshop,
|
||||||
|
});
|
||||||
|
|
||||||
export default function ProductionBoardKanbanComponent({
|
export function ProductionBoardKanbanComponent({
|
||||||
loading,
|
loading,
|
||||||
data,
|
data,
|
||||||
columnState,
|
columnState,
|
||||||
|
bodyshop,
|
||||||
}) {
|
}) {
|
||||||
console.log("data", data);
|
console.log("data", data);
|
||||||
const data2 = {
|
|
||||||
lanes: [
|
const [cards, setCards] = useState([]);
|
||||||
{
|
|
||||||
id: "lane1",
|
useEffect(() => {
|
||||||
title: "Planned Tasks",
|
const cols = bodyshop.md_ro_statuses.open_statuses.map((s) => {
|
||||||
label: "2/2",
|
return {
|
||||||
cards: [
|
id: s,
|
||||||
{
|
title: s,
|
||||||
id: "Card1",
|
|
||||||
title: "Write Blog",
|
|
||||||
description: "Can AI make memes",
|
|
||||||
label: "30 mins",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "Card2",
|
|
||||||
title: "Pay Rent",
|
|
||||||
description: "Transfer via NEFT",
|
|
||||||
label: "5 mins",
|
|
||||||
metadata: { sha: "be312a1" },
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "lane2",
|
|
||||||
title: "Completed",
|
|
||||||
label: "0/0",
|
|
||||||
cards: [],
|
cards: [],
|
||||||
},
|
};
|
||||||
],
|
});
|
||||||
};
|
if (data)
|
||||||
|
data.forEach((d) =>
|
||||||
|
cols
|
||||||
|
.find((c) => c.id === d.status)
|
||||||
|
.cards.push({ id: d.id, title: d.est_number, description: d.ownr_fn })
|
||||||
|
);
|
||||||
|
|
||||||
|
setCards(cols);
|
||||||
|
}, [data, bodyshop.md_ro_statuses.open_statuses, setCards]);
|
||||||
|
|
||||||
const kanbanCard = (card) => <Card>{card.title}</Card>;
|
const kanbanCard = (card) => <Card>{card.title}</Card>;
|
||||||
|
|
||||||
@@ -46,7 +43,8 @@ export default function ProductionBoardKanbanComponent({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Board data={data2} components={{ Card: kanbanCard }} />
|
<Board data={{ lanes: cards }} components={{ Card: kanbanCard }} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
export default connect(mapStateToProps, null)(ProductionBoardKanbanComponent);
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ export default function ProductionListColumnAlert({ record }) {
|
|||||||
job: {
|
job: {
|
||||||
production_vars: {
|
production_vars: {
|
||||||
...record.production_vars,
|
...record.production_vars,
|
||||||
alert: !record.production_vars.alert,
|
alert:
|
||||||
|
(record.production_vars && !record.production_vars.alert) || true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -155,6 +155,7 @@ export default [
|
|||||||
title: i18n.t("production.labels.alert"),
|
title: i18n.t("production.labels.alert"),
|
||||||
dataIndex: "alert",
|
dataIndex: "alert",
|
||||||
key: "alert",
|
key: "alert",
|
||||||
|
width: "4%",
|
||||||
render: (text, record) => <ProductionListColumnAlert record={record} />,
|
render: (text, record) => <ProductionListColumnAlert record={record} />,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -168,6 +169,7 @@ export default [
|
|||||||
title: i18n.t("production.labels.cycletime"),
|
title: i18n.t("production.labels.cycletime"),
|
||||||
dataIndex: "ct",
|
dataIndex: "ct",
|
||||||
key: "ct",
|
key: "ct",
|
||||||
|
width: "3%",
|
||||||
render: (text, record) => {
|
render: (text, record) => {
|
||||||
let ct = 0;
|
let ct = 0;
|
||||||
if (!!record.actual_in) {
|
if (!!record.actual_in) {
|
||||||
@@ -183,8 +185,10 @@ export default [
|
|||||||
title: i18n.t("production.labels.bodypriority"),
|
title: i18n.t("production.labels.bodypriority"),
|
||||||
dataIndex: "bodypriority",
|
dataIndex: "bodypriority",
|
||||||
key: "bodypriority",
|
key: "bodypriority",
|
||||||
|
width: "3%",
|
||||||
sorter: (a, b) =>
|
sorter: (a, b) =>
|
||||||
a.production_vars.bodypriority - b.production_vars.bodypriority,
|
((a.production_vars && a.production_vars.bodypriority) || 11) -
|
||||||
|
((b.production_vars && b.production_vars.bodypriority) || 11),
|
||||||
render: (text, record) => (
|
render: (text, record) => (
|
||||||
<ProductionListColumnBodyPriority record={record} />
|
<ProductionListColumnBodyPriority record={record} />
|
||||||
),
|
),
|
||||||
@@ -193,8 +197,10 @@ export default [
|
|||||||
title: i18n.t("production.labels.paintpriority"),
|
title: i18n.t("production.labels.paintpriority"),
|
||||||
dataIndex: "paintpriority",
|
dataIndex: "paintpriority",
|
||||||
key: "paintpriority",
|
key: "paintpriority",
|
||||||
|
width: "3%",
|
||||||
sorter: (a, b) =>
|
sorter: (a, b) =>
|
||||||
a.production_vars.paintpriority - b.production_vars.paintpriority,
|
((a.production_vars && a.production_vars.paintpriority) || 11) -
|
||||||
|
((b.production_vars && b.production_vars.paintpriority) || 11),
|
||||||
render: (text, record) => (
|
render: (text, record) => (
|
||||||
<ProductionListColumnPaintPriority record={record} />
|
<ProductionListColumnPaintPriority record={record} />
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
.production-alert {
|
.production-alert {
|
||||||
animation: alertBlinker 1s linear infinite;
|
animation: alertBlinker 1s linear infinite;
|
||||||
|
color: blue;
|
||||||
}
|
}
|
||||||
@keyframes alertBlinker {
|
@keyframes alertBlinker {
|
||||||
50% {
|
50% {
|
||||||
|
|||||||
@@ -407,6 +407,7 @@
|
|||||||
"actions": {
|
"actions": {
|
||||||
"addDocuments": "Add Job Documents",
|
"addDocuments": "Add Job Documents",
|
||||||
"addNote": "Add Note",
|
"addNote": "Add Note",
|
||||||
|
"addtoproduction": "Add to Production",
|
||||||
"changestatus": "Change Status",
|
"changestatus": "Change Status",
|
||||||
"convert": "Convert",
|
"convert": "Convert",
|
||||||
"gotojob": "Go to Job",
|
"gotojob": "Go to Job",
|
||||||
@@ -416,6 +417,7 @@
|
|||||||
"schedule": "Schedule"
|
"schedule": "Schedule"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
|
"addingtoproduction": "Error adding to production. {{error}}",
|
||||||
"creating": "Error encountered while creating job. {{error}}",
|
"creating": "Error encountered while creating job. {{error}}",
|
||||||
"deleted": "Error deleting job.",
|
"deleted": "Error deleting job.",
|
||||||
"noaccess": "This job does not exist or you do not have access to it.",
|
"noaccess": "This job does not exist or you do not have access to it.",
|
||||||
@@ -568,6 +570,7 @@
|
|||||||
"vehicle_info": "Vehicle"
|
"vehicle_info": "Vehicle"
|
||||||
},
|
},
|
||||||
"successes": {
|
"successes": {
|
||||||
|
"addedtoproduction": "Job added to production board.",
|
||||||
"all_deleted": "{{count}} jobs deleted successfully.",
|
"all_deleted": "{{count}} jobs deleted successfully.",
|
||||||
"converted": "Job converted successfully.",
|
"converted": "Job converted successfully.",
|
||||||
"created": "Job created successfully. Click to view.",
|
"created": "Job created successfully. Click to view.",
|
||||||
|
|||||||
@@ -407,6 +407,7 @@
|
|||||||
"actions": {
|
"actions": {
|
||||||
"addDocuments": "Agregar documentos de trabajo",
|
"addDocuments": "Agregar documentos de trabajo",
|
||||||
"addNote": "Añadir la nota",
|
"addNote": "Añadir la nota",
|
||||||
|
"addtoproduction": "",
|
||||||
"changestatus": "Cambiar Estado",
|
"changestatus": "Cambiar Estado",
|
||||||
"convert": "Convertir",
|
"convert": "Convertir",
|
||||||
"gotojob": "",
|
"gotojob": "",
|
||||||
@@ -416,6 +417,7 @@
|
|||||||
"schedule": "Programar"
|
"schedule": "Programar"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
|
"addingtoproduction": "",
|
||||||
"creating": "",
|
"creating": "",
|
||||||
"deleted": "Error al eliminar el trabajo.",
|
"deleted": "Error al eliminar el trabajo.",
|
||||||
"noaccess": "Este trabajo no existe o no tiene acceso a él.",
|
"noaccess": "Este trabajo no existe o no tiene acceso a él.",
|
||||||
@@ -568,6 +570,7 @@
|
|||||||
"vehicle_info": "Vehículo"
|
"vehicle_info": "Vehículo"
|
||||||
},
|
},
|
||||||
"successes": {
|
"successes": {
|
||||||
|
"addedtoproduction": "",
|
||||||
"all_deleted": "{{count}} trabajos eliminados con éxito.",
|
"all_deleted": "{{count}} trabajos eliminados con éxito.",
|
||||||
"converted": "Trabajo convertido con éxito.",
|
"converted": "Trabajo convertido con éxito.",
|
||||||
"created": "Trabajo creado con éxito. Click para ver.",
|
"created": "Trabajo creado con éxito. Click para ver.",
|
||||||
|
|||||||
@@ -407,6 +407,7 @@
|
|||||||
"actions": {
|
"actions": {
|
||||||
"addDocuments": "Ajouter des documents de travail",
|
"addDocuments": "Ajouter des documents de travail",
|
||||||
"addNote": "Ajouter une note",
|
"addNote": "Ajouter une note",
|
||||||
|
"addtoproduction": "",
|
||||||
"changestatus": "Changer le statut",
|
"changestatus": "Changer le statut",
|
||||||
"convert": "Convertir",
|
"convert": "Convertir",
|
||||||
"gotojob": "",
|
"gotojob": "",
|
||||||
@@ -416,6 +417,7 @@
|
|||||||
"schedule": "Programme"
|
"schedule": "Programme"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
|
"addingtoproduction": "",
|
||||||
"creating": "",
|
"creating": "",
|
||||||
"deleted": "Erreur lors de la suppression du travail.",
|
"deleted": "Erreur lors de la suppression du travail.",
|
||||||
"noaccess": "Ce travail n'existe pas ou vous n'y avez pas accès.",
|
"noaccess": "Ce travail n'existe pas ou vous n'y avez pas accès.",
|
||||||
@@ -568,6 +570,7 @@
|
|||||||
"vehicle_info": "Véhicule"
|
"vehicle_info": "Véhicule"
|
||||||
},
|
},
|
||||||
"successes": {
|
"successes": {
|
||||||
|
"addedtoproduction": "",
|
||||||
"all_deleted": "{{count}} travaux supprimés avec succès.",
|
"all_deleted": "{{count}} travaux supprimés avec succès.",
|
||||||
"converted": "Travail converti avec succès.",
|
"converted": "Travail converti avec succès.",
|
||||||
"created": "Le travail a été créé avec succès. Clique pour voir.",
|
"created": "Le travail a été créé avec succès. Clique pour voir.",
|
||||||
|
|||||||
Reference in New Issue
Block a user