跳至内容
菜单
此问题已终结
3 回复
5695 查看

I use this code to make an email when sending an invoice.



Hallo ${object.partner_id.name},

Er is een nieuwe factuur voor u beschikbaar:

REFERENTIES

Factuur nummer: ${object.number}

Factuur totaal: ${object.amount_total} ${object.currency_id.name}

Factuur datum: ${object.date_invoice}

% if object.origin: Order referentie: ${object.origin}

% endif % if object.user_id: Uw contactpersoont: ${object.user_id.name} % endif

<% set signup_url = object.get_signup_url() %> % if signup_url:

U kunt de factuur online bekijken en betalen via de klant portaal:

Bekijk factuur

% endif % if object.paypal_url:

Het is ook mogelijk om te betalen via Paypal:

% endif

Indien u vragen heeft, aarzel dan niet om contact met ons op te nemen.

Dank u voor het kiezen voor ${object.company_id.name or 'us'}!

${OBJECT.COMPANY_ID.NAME}

% if object.company_id.street: ${object.company_id.street}

% endif % if object.company_id.street2: ${object.company_id.street2}

% endif % if object.company_id.city or object.company_id.zip: ${object.company_id.zip} ${object.company_id.city}

% endif % if object.company_id.country_id: ${object.company_id.state_id and ('%s, ' % object.company_id.state_id.name) or ''} ${object.company_id.country_id.name or ''}

% endif

% if object.company_id.phone:

Telefoon: ${object.company_id.phone}

% endif % if object.company_id.website:

Website : ${object.company_id.website}

% endif


The result when using this template is that the email is just empty. I have to make the email al by myself.


Is there a soilution to this problem?

形象
丢弃

You must first revert to the actual template. Its already working. Then, check each time the preview when you are adding your changes. this way you will be identifying what custom code is hurting your template. Use object as case sensitive text.

编写者 最佳答案

Thanks for the answers..

How do I revert  to the initial template?

形象
丢弃
最佳答案

Hi Tom,

 try replacing ${OBJECT.COMPANY_ID.NAME} by the lower cases : ${object.company_id.name}.

I guess it is case sensitive.

形象
丢弃
相关帖文 回复 查看 活动
5
7月 17
5998
0
12月 16
3863
2
2月 25
2880
2
1月 25
1021
2
11月 24
2445