How to insert data to child table in FrappeClient? And also date to date field in erpnext?

1.5k Views Asked by At

I have two problems:

1) I'm trying to insert data to a child table, "operator_staff", of a doctype. But showing this error. Getting this error only when i try to insert data to child table.

Test Event Name
event

Response
{
  "errorMessage": "'body'",
  "errorType": "KeyError",
  "requestId": "0b615a56-3509-4a6f-90f2-ba1e5622560c",
  "stackTrace": [
    "  File \"/var/task/lambda_function.py\", line 11, in lambda_handler\n    data = json.loads(event[\"body\"])\n"
  ]
}

Function Logs
START RequestId: 0b615a56-3509-4a6f-90f2-ba1e5622560c Version: $LATEST
[ERROR] KeyError: 'body'
Traceback (most recent call last):
  File "/var/task/lambda_function.py", line 11, in lambda_handler
    data = json.loads(event["body"])END RequestId: 0b615a56-3509-4a6f-90f2-ba1e5622560c
REPORT RequestId: 0b615a56-3509-4a6f-90f2-ba1e5622560c  Duration: 2.41 ms   Billed Duration: 3 ms   Memory Size: 128 MB Max Memory Used: 49 MB  Init Duration: 320.86 ms

Request ID
0b615a56-3509-4a6f-90f2-ba1e5622560c

This is my code:

def lambda_handler(event, context):
    
    client = FrappeClient("https://asc360-prod.frappe.cloud")
    client.authenticate("5600f29d5413f28", "b1e510514448494")
    
    data = json.loads(event["body"])
    
    doc = client.insert({
        "doctype": "Operator Policy Issued",
        "operator": data["operator"],
        "name1": data["name1"],
        "gender": data["gender"],
        "nationality": data["nationality"],
        "address": data["address"],
        "operator_staff": {
            "staff_name" : data["staff_name"],
            "activity_name": data["activity_name"]
            
        }
        })

2) How to insert date to a date field through frappeclient? As I'm using AWS Lambda to insert data through API I can't use Frappe there. Only FrappeClient or datetime module. This is error I'm getting while inserting date.

Test Event Name
event

Response
{
  "errorMessage": "'body'",
  "errorType": "KeyError",
  "requestId": "cc50821d-d0b8-45e2-a44b-2c6acdad4c13",
  "stackTrace": [
    "  File \"/var/task/lambda_function.py\", line 11, in lambda_handler\n    data = json.loads(event[\"body\"])\n"
  ]
}

Function Logs
START RequestId: cc50821d-d0b8-45e2-a44b-2c6acdad4c13 Version: $LATEST
[ERROR] KeyError: 'body'
Traceback (most recent call last):
  File "/var/task/lambda_function.py", line 11, in lambda_handler
    data = json.loads(event["body"])END RequestId: cc50821d-d0b8-45e2-a44b-2c6acdad4c13
REPORT RequestId: cc50821d-d0b8-45e2-a44b-2c6acdad4c13  Duration: 18.78 ms  Billed Duration: 19 ms  Memory Size: 128 MB Max Memory Used: 49 MB  Init Duration: 319.54 ms

Request ID
cc50821d-d0b8-45e2-a44b-2c6acdad4c13
0

There are 0 best solutions below