Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
2398 Переглядів

I'm stuck.I have field.date contract_start ,field.selection contract_duration and field.char contract_expired.What i want is when a person chooses a date they want their contract to start and for how long they want their contract to last, contract_expired get the date for when the contract ends.

Аватар
Відмінити
Найкраща відповідь

Hi Zlatt,

You can calculate the expiration date by adding the duration to the start date. In Python, you can use the datetime module for this:

pythonCopy codefrom datetime import timedelta

contract_start = # Your contract start date
contract_duration = # Your selected duration, e.g. 3 (for 3 months)

contract_expired = contract_start + timedelta(days=30 * contract_duration)

This will give you the date when the contract will expire.

Regards,

Team Ksolves! 

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
бер. 21
4308
Add month to date field Вирішено
2
черв. 22
17826
0
лип. 20
3483
1
лип. 19
6982
1
трав. 16
17046