PrestaShop create new field on Address - prestashop

Hy,
I have a question where i can add a new field after Company field because i can't find anything for this
Adress link : http://prestashop/address

Related

How do I get a field in odoo 15 from res.partner module shown in account.move?

In odoo 15 I have created a PDF report for invoices using a custom layout via an external module. The address of the customer is specified at the top left of the first page of the PDF report. The content comes from the record that was created via "Customer" (res.partner) and selected via the field "partner_id". After the selection, the street and postal code as well as city are loaded in the edit view of an invoice and thus transferred to the PDF document.
How can I extend or overwrite the address field in my custom report layout to create an own address field that comes from the customer data (model res.partner)? I have created an additional field there via a module (address_suffix) that can store an address addition. I would like to be able to include this custom field of res.partner in the address field at account.move and in the end into the PDF report.
To illustrate it:
I want this field (address_suffix in res.partner)
can be seen here (account.move):
You can check the OCA partner_address_street3 module. It is similar to yours, it adds a third street field (street3) to store additional address information.
The module extends the address format, so it should automatically show on reports
On your report xm, I think you can try using t-field and using widget contact inside the t-options tag.
Example:
<span t-field="partner_id" t-options='{"widget": "contact", "fields": ["address"]}'/>

How do i can make a node form (like list of name attendance) which only fill with name (Autocomplete Text) will display the biodata fields

I am a new drupal user. I have a node which contain user's biodata. How do i can make a node form (something like list of name attendance) which only fill with name (prefer : Autocomplete Text) will display the biodata fields. Please suggest what module I should study for this situation.
Thank you

Prestashop 1.7.3.3 Edit Registration Form

I use prestashop 1.7.3.3 e-commerce system.
I need to get a phone number from the customer.
Phone field looks optional. I want to make it mandatory.
How can i do that?
enter image description here
You can set that field as mandatory in the BO > Customers > Addresses.

How to add Organisation Tag Field in Podio?

Hi I am trying to add Organisation tag with following code:
PodioAPI.Models.Item addItem = new PodioAPI.Models.Item();
var organisationTag = addItem.Field<XXXXXXXX>("organisation");
I am not sure, which type of field I have to put in place of XXXX. For email it is EmailItemField and for Phone it is PhoneItemField.
Here I am not sure about the organisation field.
That should be TagItemField but I'm not sure if it's supported in C# client.

add input field on bo order table in prestashop

i am new to prestashop
i am trying to add new input field for update weight of order
can anyone help me to know how to add input field in Back Office order tableenter image description here
i myself add that field.
by overriding
helper/list/list_content.tpl
and
helper/list/list_header.tpl
file
and adding extra column in it
after that make ajax call for updation of dataenter image description here