mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-18 01:50:54 +08:00
* configured babel and jest to work with webpack * added util function to camelize object entries * added tests for apiconvert dashboard * added enaming object key function * finished refactoring of convertapi dashboard * renamed camelize to transformObject * renamed uuids to randomValues * use random strings instead of hard coded values in test * refactored dictionary.process and added tests * refactored dashboard tests - test with json objects * added first tests for apiConvert core * made camelizeObjectkeys immutable * added talismanrc to gitignore * added all tests for apiConverts core * added more dictionary tests * finished refactoring apiConverts dictionary * restructured objects in folders * refactored apiConverts persistence * refactored apiConvert pos * refactored apiConvert privateAccess * refactored apiConverts process * refactored apiConverts report * refactored apiConverts user * refactored apiConverts values * refactored apiConverts window * linted all test files * removed tests for privateAccess * removed typos from prev implementation
38 lines
964 B
JSON
38 lines
964 B
JSON
{
|
|
"id": "34534534",
|
|
"uuid": "95325b0a-a67b-11eb-bcbc-0242ac130002",
|
|
"document_no": "document_no",
|
|
"document_type": {
|
|
"uuid": "document type uuid",
|
|
"id": "document type id",
|
|
"name": "document type name",
|
|
"description": "document type description",
|
|
"print_name": "doc type print_name"
|
|
},
|
|
"sales_representative": {
|
|
"uuid": "sales rep uuid",
|
|
"id": "sales rep id",
|
|
"name": "sales rep name",
|
|
"description": "sales rep description"
|
|
},
|
|
"document_status": {
|
|
"name": "document status name",
|
|
"description": "document status description",
|
|
"value": "document status value"
|
|
},
|
|
"total_lines": "total_lines",
|
|
"grand_total": "grand_total",
|
|
"date_ordered": "date_ordered",
|
|
"business_partner": {
|
|
"uuid": "uuid",
|
|
"id": "id",
|
|
"value": "value",
|
|
"tax_id": "tax_id",
|
|
"duns": "duns",
|
|
"naics": "naics",
|
|
"name": "name",
|
|
"last_name": "last_name",
|
|
"description": "description"
|
|
}
|
|
}
|