family name first countries

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jamie
    Member
    • Aug 2025
    • 49

    #1

    family name first countries

    Is there some provision for countries that place their family names first, such as Japan?
  • victor
    Active Community Member
    • Aug 2022
    • 1008

    #2
    Just fill in firstName, middleName and lastName in the order you want.

    Comment


    • jamie
      jamie commented
      Editing a comment
      This won't work when the field is used elsewhere, such as invoicing

      we want to respect our customers' culture as much as possible

    • victor
      victor commented
      Editing a comment
      This won't work when the field is used elsewhere, such as invoicing
      Edit the Invoice Template, Email Template, or any other Template to suit your needs.
  • jamie
    Member
    • Aug 2025
    • 49

    #3
    victor so i need a new template to just send to Japan? That's going to be a nightmare to manage. Everything will have to be duplicated and managed

    would be much more robust and future-proof if espo could add some logic in for this, they do want to be as inclusive and accepting of other cultures as possible?

    Comment

    • Kharg
      Senior Member
      • Jun 2021
      • 470

      #4
      I believe you can add such logic in your template using handlebars

      PHP Code:
      {{#if (eq account.region "Japan")}}
        
      {{lastName}} {{firstName}}
      {{else}}
        {{
      firstName}} {{lastName}}
      {{/if}} 
      Last edited by Kharg; 09-09-2025, 11:42 AM.

      Comment

      • jamie
        Member
        • Aug 2025
        • 49

        #5
        Originally posted by Kharg
        I believe you can add such login in your template using handlebars

        PHP Code:
        {{#if (eq account.region "Japan")}}
        {{lastName}} {{firstName}}
        {{else}}
        {{
        firstName}} {{lastName}}
        {{/if}} 
        thats wonderful thanks!

        Comment

      Working...