Merge pull request 'feat(item-itemPackingType): add model and dumpedFixtures' (#794) from 3374-itemPackingType into dev
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
Reviewed-on: #794 Reviewed-by: Carlos Jimenez Ruiz <carlosjr@verdnatura.es>
This commit is contained in:
commit
02bc848b7e
|
@ -47,19 +47,20 @@ TABLES=(
|
|||
cplusSubjectOp
|
||||
cplusTaxBreak
|
||||
cplusTrascendency472
|
||||
pgc
|
||||
time
|
||||
claimResponsible
|
||||
claimReason
|
||||
claimRedelivery
|
||||
claimResult
|
||||
ticketUpdateAction
|
||||
state
|
||||
sample
|
||||
department
|
||||
component
|
||||
componentType
|
||||
continent
|
||||
department
|
||||
itemPackingType
|
||||
pgc
|
||||
sample
|
||||
state
|
||||
ticketUpdateAction
|
||||
time
|
||||
volumeConfig
|
||||
)
|
||||
dump_tables ${TABLES[@]}
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"name": "ItemPackingType",
|
||||
"base": "VnModel",
|
||||
"options": {
|
||||
"mysql": {
|
||||
"table": "itemPackingType"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"code": {
|
||||
"type": "string",
|
||||
"id": true
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"acls": [
|
||||
{
|
||||
"accessType": "READ",
|
||||
"principalType": "ROLE",
|
||||
"principalId": "$everyone",
|
||||
"permission": "ALLOW"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue