Forms¶
Form blocks are used to collect information from website visitors and, if applicable, create records in the database. To add a form to a website page, drag and drop the Contact & Forms categorical building block, then select a block in the pop-up window.
การดำเนินการ¶
By default, submitting a form sends an email containing the visitor's submitted information. Depending on the apps installed on the database, additional actions that can automatically create records may become available. To choose a different action, click Edit, select a form field, navigate to the Style tab, and, in the Form section, select the desired Action:
สมัครงาน (การรับสมัคร)
Create a Customer (eCommerce)
สร้างตั๋ว (Helpdesk)
สร้างโอกาสทางการขาย (ลูกค้าสัมพันธ์)
สมัครรับจดหมายข่าว (การตลาด)
สร้างงาน (โปรเจกต์)
โมเดลเพิ่มเติม: เพื่อสร้างระเบียนประเภทอื่น ๆ
By default, submitting the form redirects visitors to a Thank you page. Use the URL field to send them to a different page. Alternatively, select Nothing or Show Message in the On Success field to keep visitors on the form's page.
It is also possible to define the Labels Width, specify whether fields are Required or Optional in the Marked Fields, and define a Mark Text to indicate required fields.
Tip
Configure the visibility settings for forms.
ฟิลด์¶
To add a new field to the form, navigate to the Style tab and click the + Field button in the Form or Field header section. To modify any field on the form, select the field, then use the options available in the Field section of the Style tab. For example, you can:
เปลี่ยนฟิลด์ ประเภท
Tip
นอกจากนี้ยังสามารถเลือก ฟิลด์ที่มีอยู่ จากฐานข้อมูลและใช้ข้อมูลที่มีอยู่ได้ ฟิลด์ที่มีให้ใช้งานขึ้นอยู่กับการดำเนินการที่เลือก ฟิลด์คุณสมบัติที่เพิ่มเข้ามาในฐานข้อมูลสามารถใช้ได้เช่นกัน
ฟิลด์บางประเภทมีลักษณะคล้ายกัน แต่ข้อมูลที่ป้อนต้องเป็นไปตามรูปแบบเฉพาะ
แก้ไข ป้ายชื่อ ของฟิลด์และปรับ ตำแหน่ง ของมัน
เปิดใช้งาน คำอธิบาย ของฟิลด์ เปิดสวิตช์แล้วคลิกที่คำอธิบายเริ่มต้นในฟอร์มเพื่อแก้ไข
ระบุว่าฟิลด์ จำเป็น หรือไม่
Use the Requirement field to add validation Conditions to ensure customers enter valid information. For example, set the condition requiring the Email field to contain an
@symbol.เพิ่ม ภาพเคลื่อนไหว
Edit the field's visibility settings.
Depending on the selected field, the following options are available:
For text & string fields, such as Text, Long Text, Email, and Url, as well as numerical fields, such as Telephone, Number, and Decimal Number, you can define a Placeholder and a Default Value.
For the Long Text field, you can also specify the field's Height.
The following selection fields are available:
Checkbox: Customers can select or clear the checkbox. Enable Default Value to have it selected by default.
Multiple Checkboxes: Customers can select multiple options.
Radio Buttons: Customers can select one option.
Tip
For Multiple Checkboxes and Radio Buttons, define how the options are displayed: Horizontal or Vertical.
Selection: Customers can select one option from the drop-down menu.
For fields with multiple options, enable the options you want to make available by toggling the switch on. To remove an option, click the (remove) icon. To add a new option, click Add New Option and enter the option.
The Date and Date & Time fields allow customers to select a date and, if applicable, a time using the date selector. You can also define a Placeholder and a Default Value, e.g., to use a specific date/time by default.
Tip
If needed, customize the (calendar) icon.
The File Upload field type allows customers to upload a file. You can define the Max # of Files as well as the Max File Size.
To apply the changes, click Save.
Tip
Modify the text of the Submit button by clicking it and entering the desired text. Then, change the Button Position in the Submit Button section of the Style tab.
เพิ่มแบบฟอร์มติดต่อ Odoo บนเว็บไซต์ที่ไม่ใช่ Odoo¶
คุณสามารถแสดงแบบฟอร์มติดต่อ Odoo บนเว็บไซต์อื่นได้โดยใช้ iframe ดำเนินการตามขั้นตอนเหล่านี้:
Prepare the Odoo form: Create a contact form on a page in Odoo Website and remove the header and footer design. Make sure only the contact form remains on the page.
สร้างโค้ดที่สามารถฝังได้: คัดลอก URL ของเพจแบบฟอร์ม Odoo และวางลงในตัวสร้าง iframe เช่น La Digitale.dev หรือ iFrame Generator ปรับความกว้างและความสูงเพื่อการแสดงผลที่เหมาะสม
Add the embedded code to the non-Odoo website: Open the relevant page's HTML (in the code editor or CMS) and insert the embedded code where the form should be displayed.
Example
ตัวอย่างของโค้ดที่ฝังไว้:
<iframe src="https://example.com/odoo-form"
style="border:0;"
name="odooForm"
scrolling="no"
frameborder="0"
marginheight="0"
marginwidth="0"
height="400px"
width="600px"
allowfullscreen>
</iframe>