Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
2406 Widoki

Been trying to get the content of an html field printed but it always has

tags included.

have tried several options including t-out, field etc

props.partner.comment" t-options='{"widget": "html"}'/>


Can anyone help?

Awatar
Odrzuć
Autor

Forgot to mention this is for Odoo v 16

Najlepsza odpowiedź

Hi,

Try like below

set const { markup } = owl;

set props.partner.comment = markup(props.partner.comment)

now using t-out will print content without the tags

Regards

Awatar
Odrzuć
Autor

Where or how do I add this?

Autor

I added it to my js files as follows but I'm not sure if I did it correctly as I'm still seeing the tags

/** @odoo-module */
import { PosGlobalState} from 'point_of_sale.models';
import Registries from 'point_of_sale.Registries';
const { markup } = owl;
const ACCPosGlobalState = (PosGlobalState) => class ACCPosGlobalState extends PosGlobalState {
async _processData(loadedData) {

await super._processData(...arguments);

this.x_studio_acc_num = loadedData['res.partner'];
console.log(this.x_studio_acc_num)

this.comment = loadedData['res.partner'];
this.comment = markup(this.comment);
console.log(this.comment)

}
}
Registries.Model.extend(PosGlobalState, ACCPosGlobalState);

Powiązane posty Odpowiedzi Widoki Czynność
2
mar 17
6263
3
maj 25
1705
1
kwi 25
1272
3
wrz 24
14160
1
wrz 24
4395