Atlas-Assistance-Dogs / atlas-dogs

Repository for Atlas Dogs flows in Salesforce
1 stars 1 forks source link

change "inactive" to "complete" in Standalone Status #540

Closed atlasjen closed 1 month ago

atlasjen commented 1 month ago

Standalone courses are a bit different in that people complete them and are done. it's not an ongoing certification. So can we add "Complete" as a status and set whatever was Inactive to that?

I know i can add statuses manually but i wasn't sure if you had icon logic that would break.

deb761 commented 1 month ago

“Completed" status will get the same icon as "Certified-Active”, “Certified”, and “Active".

On Jul 16, 2024, at 3:09 PM, atlasjen @.***> wrote:

Standalone courses are a bit different in that people complete them and are done. it's not an ongoing certification. So can we add "Complete" as a status and set whatever was Inactive to that?

I know i can add statuses manually but i wasn't sure if you had icon logic that would break.

— Reply to this email directly, view it on GitHub https://github.com/Atlas-Assistance-Dogs/atlas-dogs/issues/540, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACJIBQWEKTHRIUUZSJO6ATTZMWKZ7AVCNFSM6AAAAABK7NXKO6VHI2DSMVQWIX3LMV43ASLTON2WKOZSGQYTEMJSGM3DIOI. You are receiving this because you were assigned.

atlasjen commented 1 month ago

what does "inactive" get as a status?

deb761 commented 1 month ago

Same as “On Hold”, “Suspended”, and “Discontinued”.

get image() {
    switch (this.status) {
        case "Initial Inquiry":
        case "Prospective":
            return "standard:question_feed";
        case "Onboarding":
            return "standard:flow";
        case "In ADSiM":
        case "In Training":
        case "In Progress":
            return "standard:education";
        case "Certified-Active":
        case "Certified":
        case "Active":
        case "Completed":
            return "standard:task2";
        case "Action Needed Soon":
            return "custom:custom82";
        case "Action Needed":
            return "standard:actions_and_buttons";
        case "Inactive":
        case "On Hold": // retained to allow production transition
        case "Suspended":
        case "Discontinued":
            return "standard:waits";
        default:
            return "standard:empty";
    }

On Jul 16, 2024, at 8:19 PM, atlasjen @.***> wrote:

what does "inactive" get as a status?

— Reply to this email directly, view it on GitHub https://github.com/Atlas-Assistance-Dogs/atlas-dogs/issues/540#issuecomment-2232290091, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACJIBQVJ2JISU7HBMIWV2H3ZMXPDNAVCNFSM6AAAAABK7NXKO6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEMZSGI4TAMBZGE. You are receiving this because you were assigned.

atlasjen commented 1 month ago

ok perfect. then i will just change the value for the picklist in prod and we can close this. I know picklists don't propegate anyway. i'll change in staging and prod