feat(application): complete dispo import operator flow
This commit is contained in:
@@ -419,16 +419,32 @@ export function deriveRoleTokens(...values: Array<string | null | undefined>): s
|
||||
.join(" ")
|
||||
.toUpperCase();
|
||||
|
||||
if (combinedValue.includes("2D")) {
|
||||
if (
|
||||
combinedValue.includes("2D") ||
|
||||
combinedValue.includes("NUKE") ||
|
||||
combinedValue.includes("PHOTOSHOP") ||
|
||||
combinedValue.includes("RETOUCH") ||
|
||||
combinedValue.includes("ARTWORK") ||
|
||||
combinedValue.includes("MOTION DESIGN")
|
||||
) {
|
||||
tokenSet.add("2D");
|
||||
}
|
||||
if (combinedValue.includes("3D")) {
|
||||
if (combinedValue.includes("3D") || combinedValue.includes("MODELING")) {
|
||||
tokenSet.add("3D");
|
||||
}
|
||||
if (combinedValue.includes("PROGRAM/DELIVERY MGMT") || combinedValue.includes("PROJECT MANAGEMENT")) {
|
||||
if (
|
||||
combinedValue.includes("PROGRAM/DELIVERY MGMT") ||
|
||||
combinedValue.includes("PROJECT MANAGEMENT") ||
|
||||
combinedValue.includes("PRODUCER") ||
|
||||
combinedValue.includes("HEAD")
|
||||
) {
|
||||
tokenSet.add("PM");
|
||||
}
|
||||
if (combinedValue.includes("ART DIRECTION")) {
|
||||
if (
|
||||
combinedValue.includes("ART DIRECTION") ||
|
||||
combinedValue.includes("ART DIRECTOR") ||
|
||||
combinedValue.includes("DIGITAL DESIGNER")
|
||||
) {
|
||||
tokenSet.add("AD");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user