2023-09-22 Dealita Task 13

 

Figma designs (jātaisa uzreiz HTML5, CSS3 ar šiem designs, jaieliek pareizie fonti kā TTF font-faces) https://www.figma.com/file/otsnFLmux4UxBdZ2WpoJRC/Dealita?type=design&mode=design&t=cOSnlub4SPElZUNs-0

Invite nosūtīts uz: richard.rusevich@gmail.com

 

Fontus un design elementus, var dabūt no mūsu designer Raita,

Tel: +37127068283 (Telegram)

 

Šeit atrodas pareizie dizaini image-20230922194614315

 

Logic flow - kā sistēma strādā

  1. User login

    1. Currently manually added to database, store password as sha256

  2. User makes Due Dilligence checklist (checklist that shows if company is a match for investment, this can be reused)

    1. Checklist based on any number of questions that can be answered with Yes/No

    2. Questions can be entered as clear text

    3. There will be AI based validation to not allow entering invalid question

    4. Below there will be suggestions of questions to speed up entering

    5. There will also be “critical” questions that must be Yes in order to qualify deal

    6. Also users can enter how many followup emails can system send based on this checklist and how long should system wait for answers from founder before giving up

  3. User uploads pitchdeck/PDF presentation as a new Deal and selects which checklist he wants to verify on this PDF and adds contact information of founder

  4. In backend worker AI automatically tries to answer all questions, if missing information it will send on behalf of User emails to founder to collect missing information

  5. User sees in Deals section all of deals with Progress (how many questions answered) and Match score (how many questions are yes)

  6. User then can see full report or cancel/stop due dilligenece process for deal

 

Github

https://github.com/asya-ai/dealita-web ^ Iedotas tiesības

Database structure

Database access (postgreSQL - use PyCharm Database Addon to edit) h: 54.91.118.112 d: dealita_v1 u: dealita_v1 p: JixB30tN4bCqLN9gfxmP

image-20230922235309793

 

 

Priekš activity_type (PitchDeckUpload, etc.), deal_state (Active, Processing, GatheringInfo, Disqualified, Cancelled, Qualified ) , evidence_type(PitchDeck, Email) vajag izveidot Enum classes str based. By default viena user_companies jāievada Dealita

 

1 to N
1 to N
1 to N
1 to N
1 to N (but initally 1 to 1!)
1 to N
1 to N
1 to N
1 to 1
1 to 1
user_companies
user_company_id: PK
company_uuid: varchar[512]
company_name: varchar[512]
created: timestamp NOW
modified: timestamp NOW
users
user_id: PK
user_company_id: FK
user_uuid: varchar[512]
user_email: varchar[512]
password: char[64]
created: timestamp NOW
modified: timestamp NOW
deals_files
deals_file_id: PK
file_uuid: varchar[512]
file_original_name: varchar[512]
created: timestamp NOW
modified: timestamp NOW
deals
deal_id: PK
user_company_id: FK
user_id: FK
deal_uuid: varchar[512]
deal_company: varchar[512]
deal_email: varchar[512]
deal_founder_name: varchar[512]
deal_founder_surname: varchar[512]
deal_state: varchar[64]
created: timestamp NOW
modified: timestamp NOW
checklist_in_deals
checklist_in_deals_id: PK
checklist_id: FK
deal_id: FK
created: timestamp NOW
modified: timestamp NOW
checklists
checklist_id: PK
user_company_id: FK
user_id: FK
checklist_uuid: varchar[512]
checklist_name: varchar[512]
checklist_days_to_wait: int
checklist_max_emails_sent: int
checklist_minimal_theshold: float
checklist_stats_avg_match_score: float
created: timestamp NOW
modified: timestamp NOW
checklist_questions
checklist_question_id: PK
checklist_id: FK
question_text: text
question_is_critical: bool
question_stats_avg_match_score: float
created: timestamp NOW
modified: timestamp NOW
checklist_answers
checklist_answer_id: PK
checklist_question_id: FK
deal_id: FK
is_match: bool
evidence_type: varchar[512]
created: timestamp NOW
modified: timestamp NOW
audit_trail
audit_trail_id: PK
user_id: FK| NULL
deal_id: FK| NULL
checklist_id: FK| NULL
checklist_answer_id: PK | NULL
activity_type: varchar[512]
activity_content: text
created: timestamp NOW

 

Login window

image-20230922232828078

^ Sakodēt visus links un designs, bet lai strādā tikai Login un parāda, ja kļīuda

Checklist new/edit

! Visos URLs lietod UUIDs nevis IDs

Jābūt checkbox pie katra question “Is critical”

Apakšā pagaidām noņemam “Add from suggestions”

image-20230922234409669

Deals new/edit

image-20230922233638144

Checklist overview

Apmēram šādi kā zemāk parādīts - jārāda average match score no visiem deals, kas piesaistīti katrai checklist

uz “…” spiežot parādās “Edit” “Delete”

image-20230922234524763

Deals overview

image-20230922233133706

Deal opened (view mode)

image-20230922233601512

 

TODO

  1. Implement database - Model Dataclasses for each Model use ORM (SQLAlchemy, PonyORM)

  2. Implement View - Flask based forms matching designs

  3. CSS must be implemented using SCSS (Pycharm has compiler)

  4. Controller should handle any datastructure modifications, cannot access database in View! only through Controllers - static classes

  5. Implement User login form (if missing design make placeholder), implement using Session (if necessary can add session to DB tables)

  6. Implement new/edit Checklist form (Need to use javascript to add questions, remember there will be a lot of background AJAX calls later to validate these)

  7. Implement saving and browsing checklists

  8. Implement new/edit Deals form

  9. Implement saving and browsing deals

  10. Implement deals progress visualization - progress and match score