Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

GestioneManutenzioni.skipper 286KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978
  1. <?xml version="1.0"?>
  2. <skipper version="3.2.25.1702" mvc="Laravel" orm="Laravel" name="MyAzienda" uuid="3072e02c-7554-4faa-a6bb-1bdf47958cd4">
  3. <orm-attributes>
  4. <attribute name="migrations-path">database/migrations</attribute>
  5. </orm-attributes>
  6. <module name="\Application module" local-name="Application module" namespace="\App\Models" local-namespace="App\Models" export-format="Laravel" export-path="." uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72">
  7. <entity name="\App\Models\User" local-name="User" namespace="\App\Models" uuid="56185713-1439-4bd9-81df-6d5339d066ce">
  8. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="0a6f5cb1-6847-45b2-9241-8ab815e1c380"/>
  9. <field name="nome" type="string" uuid="7146ddab-7bf0-4c4a-9cb9-0a80eedba7fd"/>
  10. <field name="cognome" type="string" uuid="5d3e9adc-9d0e-4b7c-abef-2b50ec57333c"/>
  11. <field name="email" type="string" uuid="097ab2c7-9646-43ff-bc82-8cc0c277d909"/>
  12. <field name="telefono" type="string" uuid="2cb16ee6-fd81-4981-95be-d88191274a0d"/>
  13. <field name="password" type="string" uuid="ca5b3607-4149-4aa9-9fe9-ed3f9ea4b79b"/>
  14. <field name="azienda_id" type="bigInteger" unsigned="true" uuid="a71fea94-0e25-4722-a9f4-a764b739a498"/>
  15. <field name="email_verified_at" type="timestamp" uuid="e9cfc935-4b99-4bc8-be16-c582001b7cf4"/>
  16. <field name="remember_token" type="string" uuid="43a000b7-9f98-4fbd-a88d-c6ea908cb2cc"/>
  17. <field name="api_token" type="string" uuid="e1c61394-f57e-4941-aeb7-04fb368733cd"/>
  18. <field name="two_factor_secret" type="text" uuid="9f263de8-d827-4458-abac-08dc31740853"/>
  19. <field name="two_factor_recovery_codes" type="text" uuid="07ddc14d-0638-4998-9c0f-61e6b4c275ef"/>
  20. <field name="two_factor_confirmed_at" type="timestamp" uuid="7e1530aa-7374-4465-af8d-0aed05196cf6"/>
  21. <field name="is_gruppo" type="boolean" default="0" uuid="704eb3e5-b120-4303-b675-f3b7e051b24d"/>
  22. <field name="is_azienda" type="boolean" default="0" uuid="2e3ab400-2d56-48bd-b868-74e5494168cd"/>
  23. <field name="label_gruppo" type="string" uuid="b575155d-c744-4622-92bb-d28a36710267"/>
  24. <field name="componenti_gruppo" type="json" uuid="c26ef028-e3f3-4dfe-b949-397da060e974"/>
  25. <field name="ragione_sociale" type="string" uuid="ab3e9eee-6cc3-4b04-923d-c9eaeb067f3a"/>
  26. <field name="piva" type="string" uuid="24b53519-f7ed-4605-97ed-0fe8007aec6d"/>
  27. <field name="cod_fiscale" type="string" uuid="54f8f89b-8f1d-4350-b6be-f3d442bd097b"/>
  28. <field name="indirizzo" type="string" uuid="a904fce5-68f9-49c5-9c4b-32cedf9bb6bb"/>
  29. <field name="note" type="text" uuid="75bbae31-8850-4bd7-ad84-264a0a9ef52d"/>
  30. <field name="dominio_email" type="string" uuid="c05381f2-589c-4fc3-837d-ae38b097500c"/>
  31. <field name="comune_id" type="bigInteger" unsigned="true" uuid="519bbe2d-e5b8-49c0-b964-08644a0c119f"/>
  32. <field name="responsabile_azienda" type="boolean" default="0" uuid="33ec009d-c086-49d1-9d60-78edb4e17fc7"/>
  33. <field name="created_at" type="timestamp" uuid="40919a29-47f6-4516-9c3d-917ed2c9afe6"/>
  34. <field name="updated_at" type="timestamp" uuid="ef88ffd6-4374-4238-99c9-9cc9596a093e"/>
  35. <orm-attributes>
  36. <attribute name="table">users</attribute>
  37. <attribute name="fillableAll">as-fillable-all</attribute>
  38. <attribute name="extends">\Illuminate\Foundation\Auth\User</attribute>
  39. </orm-attributes>
  40. </entity>
  41. <association from="\App\Models\User" to="\App\Models\Comune" caption="Comune Users" owner-alias="users" inverse-alias="comune" many-owner="true" many-inverse="false" uuid="8399970c-2d0b-403e-996b-e86248cb3bc5">
  42. <association-field from="comune_id" to="id" uuid="f66c0c1c-a961-4b58-b5b9-46c97265ead5"/>
  43. <orm-attributes>
  44. <attribute name="onDelete">set null</attribute>
  45. </orm-attributes>
  46. </association>
  47. <association from="\App\Models\User" to="\App\Models\User" caption="User Users" owner-alias="utentiAzienda" inverse-alias="azienda" many-owner="true" many-inverse="false" uuid="787d90ec-5676-4749-9b36-cea959c6793b">
  48. <association-field from="azienda_id" to="id" uuid="867d2980-d54c-4b5c-8ab6-c07f0783c368"/>
  49. <orm-attributes>
  50. <attribute name="onDelete">set null</attribute>
  51. </orm-attributes>
  52. </association>
  53. <entity name="\App\Models\Segnalazione" local-name="Segnalazione" namespace="\App\Models" uuid="b21d156e-828b-49fe-87a8-659eb8411896">
  54. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="d15505d1-a284-4cf1-94b0-70d0f5788243"/>
  55. <field name="user_id" description="chi ha fatto la segnalazione" type="bigInteger" unsigned="true" uuid="ecd5a597-63db-4120-8e3f-0c4b6fff198d"/>
  56. <field name="assegnata_a_id" description="a chi &#xE8; assegnata la segnalazione" type="bigInteger" unsigned="true" uuid="9157dc7c-305b-4227-8b05-3992650c5cfc"/>
  57. <field name="azienda_id" type="bigInteger" unsigned="true" uuid="76454f4a-a34f-43c3-9ae6-e6cbaedcf788"/>
  58. <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="b214ffbc-1d19-4585-8ba6-40f9481d9267"/>
  59. <field name="contratto_servizio_todo_id" type="bigInteger" unsigned="true" uuid="e483a339-f493-4b94-8f93-a2b661231ee5"/>
  60. <field name="ordine_lavoro_id" type="bigInteger" unsigned="true" uuid="3cef7379-2ba5-4b50-9da8-6afcf2c66341"/>
  61. <field name="acquisto_servizio_id" type="bigInteger" unsigned="true" uuid="22a1f5dd-b956-4ee7-bf73-062e66d3a5b0"/>
  62. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="7158b094-0bec-4edb-914e-2457f0424463"/>
  63. <field name="numero" type="integer" uuid="992bbdcc-c8a3-49a9-a95d-c28287148b38"/>
  64. <field name="titolo" type="string" uuid="93e92649-f52f-4db5-baad-a4abf8e20f62"/>
  65. <field name="stato" type="string" uuid="86938116-9b87-4051-bc45-3009fe9cbf83"/>
  66. <field name="priorita" type="string" uuid="47ea6f64-0734-42ae-9374-bfe268ac2fca"/>
  67. <field name="tipo" type="string" uuid="16f71b45-d45e-490a-9985-f19bed3c4d1c"/>
  68. <field name="token" type="string" uuid="e5bd4274-35d3-4bff-9643-31c0b84ef421"/>
  69. <field name="meta" type="json" uuid="feb6065e-dfd6-47d6-a5bb-1d54c5d99050"/>
  70. <field name="origine" type="string" uuid="330da781-7ebb-4a50-b6fd-b626f954735f"/>
  71. <field name="tempo_stimato" type="decimal" size="10" uuid="91880b18-1a17-4b31-85e5-61ae81e6aba2">
  72. <orm-attributes>
  73. <attribute name="decimal">2</attribute>
  74. </orm-attributes>
  75. </field>
  76. <field name="created_at" type="timestamp" uuid="d0040cc6-db11-4587-beed-bf4313681d57"/>
  77. <field name="updated_at" type="timestamp" uuid="3a3d74a0-b87a-40b2-aa1d-691d9ff66856"/>
  78. <orm-attributes>
  79. <attribute name="fillableAll">as-fillable-all</attribute>
  80. <attribute name="table">segnalazione</attribute>
  81. </orm-attributes>
  82. </entity>
  83. <association from="\App\Models\Segnalazione" to="\App\Models\User" caption="User Segnalaziones" owner-alias="segnalazioniAssegnate" inverse-alias="assegnataA" many-owner="true" many-inverse="false" uuid="2fa65d03-8ddb-413f-8064-798860928786">
  84. <association-field from="assegnata_a_id" to="id" uuid="d432694a-89df-447e-801d-24b276e2ac8c"/>
  85. <orm-attributes>
  86. <attribute name="onDelete">set null</attribute>
  87. </orm-attributes>
  88. </association>
  89. <association from="\App\Models\Segnalazione" to="\App\Models\User" caption="User Segnalaziones" owner-alias="segnalazioni" inverse-alias="user" many-owner="true" many-inverse="false" uuid="6faa9818-b5b6-4eab-96b6-6eaf56d1de79">
  90. <association-field from="user_id" to="id" uuid="08699248-9392-4b75-b16b-ade34b487929"/>
  91. <orm-attributes>
  92. <attribute name="onDelete">set null</attribute>
  93. </orm-attributes>
  94. </association>
  95. <association from="\App\Models\Segnalazione" to="\App\Models\User" caption="User Segnalaziones" owner-alias="segnalazioniAzienda" inverse-alias="azienda" many-owner="true" many-inverse="false" uuid="d586b98c-7daa-49d4-ada1-8c2c9223fb66">
  96. <association-field from="azienda_id" to="id" uuid="ff304b0f-2ee3-4290-8f70-d512cc0cedbe"/>
  97. <orm-attributes>
  98. <attribute name="onDelete">set null</attribute>
  99. </orm-attributes>
  100. </association>
  101. <association from="\App\Models\Segnalazione" to="\App\Models\ContrattoServizio" caption="ContrattoServizio Segnalaziones" owner-alias="segnalazioni" inverse-alias="contrattoServizio" many-owner="true" many-inverse="false" uuid="5f4ca39e-40ba-4157-bf4c-603b7469b044">
  102. <association-field from="contratto_servizio_id" to="id" uuid="f88439b2-fde3-4839-896b-4fc572f767e0"/>
  103. <orm-attributes>
  104. <attribute name="onDelete">set null</attribute>
  105. </orm-attributes>
  106. </association>
  107. <association from="\App\Models\Segnalazione" to="\App\Models\OrdineLavoro" caption="OrdineLavoro Segnalaziones" owner-alias="segnalazioni" inverse-alias="ordineLavoro" many-owner="true" many-inverse="false" uuid="86aded2a-2e4e-4fc2-8702-5191cd073056">
  108. <association-field from="ordine_lavoro_id" to="id" uuid="b9b6e825-5ce8-4473-be84-81c0df564f89"/>
  109. <orm-attributes>
  110. <attribute name="onDelete">set null</attribute>
  111. </orm-attributes>
  112. </association>
  113. <association from="\App\Models\Segnalazione" to="\App\Models\ContrattoServizioTodo" caption="ContrattoServizioTodo Segnalaziones" owner-alias="segnalazioni" inverse-alias="contrattoServizioTodo" many-owner="true" many-inverse="false" uuid="faaed052-f628-4ae7-8f52-b3614fad893e">
  114. <association-field from="contratto_servizio_todo_id" to="id" uuid="14be7b69-4db0-40ea-bb4b-c32bec31da91"/>
  115. <orm-attributes>
  116. <attribute name="onDelete">set null</attribute>
  117. </orm-attributes>
  118. </association>
  119. <association from="\App\Models\Segnalazione" to="\App\Models\AcquistoServizio" caption="AcquistoServizio Segnalaziones" owner-alias="segnalazioni" inverse-alias="acquistoServizio" many-owner="true" many-inverse="false" uuid="41971b51-8523-4c42-83a6-4ea29a618e4c">
  120. <association-field from="acquisto_servizio_id" to="id" uuid="e298ce6f-7e2c-4b7e-80e3-41c8cd31be5e"/>
  121. <orm-attributes>
  122. <attribute name="onDelete">set null</attribute>
  123. </orm-attributes>
  124. </association>
  125. <association from="\App\Models\Segnalazione" to="\App\Models\Prodotto" caption="Prodotto Segnalaziones" owner-alias="segnalazioni" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="3d14fd5b-7f78-49e4-831f-a98aa484a94f">
  126. <association-field from="prodotto_id" to="id" uuid="dfe269b5-36b7-4a6a-ad73-5195877c88f3"/>
  127. <orm-attributes>
  128. <attribute name="onDelete">set null</attribute>
  129. </orm-attributes>
  130. </association>
  131. <entity name="\App\Models\ConfiguraSegnalazione" local-name="ConfiguraSegnalazione" namespace="\App\Models" uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284">
  132. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="b82082e0-0b90-471d-9698-545b58e84b5a"/>
  133. <field name="label" type="string" uuid="c0b1bbac-3561-4290-8d26-0f80e005ddf9"/>
  134. <field name="descrizione" type="text" uuid="27bba23a-4ee0-47bf-bb70-b7029dbacd8a"/>
  135. <field name="gruppo" type="string" uuid="59cd917a-97b3-4227-badc-ee7604c971f7"/>
  136. <field name="key" type="string" uuid="436d6a3f-fc22-4fe5-a91f-e2c393ed7780"/>
  137. <field name="value" type="string" uuid="6122590b-dc17-4bf2-8497-c5b17bacaacd"/>
  138. <field name="type" type="string" uuid="b7ab3e5d-4482-483b-8cea-a26de1feda03"/>
  139. <field name="order" type="integer" uuid="e4996d7f-4473-478d-8fea-5936deb136bd"/>
  140. <field name="icona" type="string" uuid="b9635a0a-85b2-467a-b2dc-89cd63ee0c4d"/>
  141. <field name="colore" type="string" uuid="c6811c53-5d36-454d-b43f-5df0157e39c2"/>
  142. <field name="opzioni" type="json" uuid="1038885e-eca5-4f75-a412-81059913bfe5"/>
  143. <field name="created_at" type="timestamp" uuid="00cd7459-b3a0-482c-83a4-7568de2c7124"/>
  144. <field name="updated_at" type="timestamp" uuid="93b12b98-06a8-4563-9e4d-553b532d39db"/>
  145. <orm-attributes>
  146. <attribute name="fillableAll">as-fillable-all</attribute>
  147. <attribute name="table">configura_segnalazione</attribute>
  148. </orm-attributes>
  149. </entity>
  150. <entity name="\App\Models\Annotazione" local-name="Annotazione" namespace="\App\Models" uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc">
  151. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="0437cbe3-b2c4-4fa6-8c9c-7df74e17a5e2"/>
  152. <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="a55daaa7-8ba7-4bb0-83dd-dcfdb8036968"/>
  153. <field name="user_id" type="bigInteger" unsigned="true" uuid="734b6cb6-58f7-4a2b-b27d-ab8dc46cf714"/>
  154. <field name="text" type="longText" uuid="f748b6d3-a6af-40b0-a522-4447364a2948"/>
  155. <field name="tempo_minuti" type="integer" default="0" uuid="b3f34db1-e2e5-4426-a960-51eb2d8ca0b1"/>
  156. <field name="tempo_data" type="dateTime" uuid="f305a718-29d3-4bd5-8da9-619db3671251">
  157. <orm-attributes>
  158. <attribute name="cast">datetime</attribute>
  159. <attribute name="castFormat">d/m/Y H:i</attribute>
  160. </orm-attributes>
  161. </field>
  162. <field name="costo" type="decimal" size="10" uuid="330f67c6-9da7-4130-8907-9c1339a62723">
  163. <orm-attributes>
  164. <attribute name="decimal">2</attribute>
  165. </orm-attributes>
  166. </field>
  167. <field name="costo_descrizione" type="text" uuid="2d89a9fb-9229-412e-b6df-9b35a19f14a5"/>
  168. <field name="non_fatturare" type="boolean" default="0" uuid="d0ffea66-3d82-495a-bbc8-f7cc443bae31"/>
  169. <field name="costo_uscita" type="decimal" default="0" uuid="c7582fe6-bc2e-4eee-ad56-9593b156d48c"/>
  170. <field name="riservata" type="boolean" default="1" uuid="c48733ff-ec02-4aa0-be7c-25be727c3c1e"/>
  171. <field name="riferimento" type="string" uuid="dca8d620-9b45-4a1f-96e4-0d76392ac410"/>
  172. <field name="email" type="string" uuid="e2ca0f54-426d-4977-b729-fd007dee6f64"/>
  173. <field name="telefono" type="string" uuid="7b367191-cdfd-465f-8efe-ba0922fa32ff"/>
  174. <field name="created_at" type="timestamp" uuid="d0ae0044-ec8e-4aee-8cb5-84d5a663c57a"/>
  175. <field name="updated_at" type="timestamp" uuid="80c6b3cc-d201-4972-8b42-e25cbee8b615"/>
  176. <orm-attributes>
  177. <attribute name="fillableAll">as-fillable-all</attribute>
  178. <attribute name="table">annotazione</attribute>
  179. </orm-attributes>
  180. </entity>
  181. <association from="\App\Models\Annotazione" to="\App\Models\Segnalazione" caption="Segnalazione Annotaziones" owner-alias="annotazioni" inverse-alias="segnalazione" many-owner="true" many-inverse="false" uuid="9d4fa7d0-23be-4bb2-99bd-67797c3244c0">
  182. <association-field from="segnalazione_id" to="id" uuid="76a290ad-9338-4ae7-a168-dd924d4c0b9f"/>
  183. <orm-attributes>
  184. <attribute name="onDelete">cascade</attribute>
  185. </orm-attributes>
  186. </association>
  187. <association from="\App\Models\Annotazione" to="\App\Models\User" caption="User Annotaziones" owner-alias="annotazioni" inverse-alias="user" many-owner="true" many-inverse="false" uuid="f5d31adf-5971-42f7-90bf-41571fe64218">
  188. <association-field from="user_id" to="id" uuid="1fb9c039-f291-4e4e-ac2f-c31f14db295b"/>
  189. <orm-attributes>
  190. <attribute name="onDelete">set null</attribute>
  191. </orm-attributes>
  192. </association>
  193. <entity name="\App\Models\AllegatoAnnotazione" local-name="AllegatoAnnotazione" namespace="\App\Models" uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669">
  194. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="30f3fa1d-7834-42da-bbfc-3a60ddad4034"/>
  195. <field name="annotazione_id" type="bigInteger" unsigned="true" uuid="d48cb9c0-3907-4472-88a5-44774d686d37"/>
  196. <field name="nome" type="string" uuid="96220dc4-79f3-4e79-8024-cd4a976f443a"/>
  197. <field name="descrizione" type="string" uuid="97adca03-8802-4042-8f00-ff79b3910b0d"/>
  198. <field name="path_file" type="string" uuid="14d15c1e-3bfe-45b8-8d74-5ddd222ff3b5"/>
  199. <field name="created_at" type="timestamp" uuid="aa099fda-2af1-4c9e-8e79-3020bff7acde"/>
  200. <field name="updated_at" type="timestamp" uuid="65bce51b-82df-4a22-a870-38aa7dc6e304"/>
  201. <orm-attributes>
  202. <attribute name="fillableAll">as-fillable-all</attribute>
  203. <attribute name="table">allegato_annotazione</attribute>
  204. </orm-attributes>
  205. </entity>
  206. <association from="\App\Models\AllegatoAnnotazione" to="\App\Models\Annotazione" caption="Annotazione AllegatoAnnotaziones" owner-alias="allegatiAnnotazione" inverse-alias="annotazione" many-owner="true" many-inverse="false" uuid="719929c1-e0fe-4feb-950a-ba417c35a60c">
  207. <association-field from="annotazione_id" to="id" uuid="c74b78f8-307e-4473-a96d-263d5f8908d2"/>
  208. <orm-attributes>
  209. <attribute name="onDelete">cascade</attribute>
  210. </orm-attributes>
  211. </association>
  212. <entity name="\App\Models\Provincia" local-name="Provincia" namespace="\App\Models" uuid="f1331b94-8ccf-4328-bc32-bffdc732572e">
  213. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="e489d50b-7a4e-4869-b62a-6e552e4a1140"/>
  214. <field name="nazione_id" type="bigInteger" unsigned="true" uuid="a51b37ab-f251-4222-b5cd-09de8f6032ea"/>
  215. <field name="nome" type="string" uuid="673adc64-b483-4df0-b282-74322004a246"/>
  216. <field name="sigla" type="string" uuid="640d52fb-d124-4ee8-a184-52f855e4153b"/>
  217. <field name="created_at" type="timestamp" uuid="7f7a24b6-229f-4acf-aef3-0ec512768d24"/>
  218. <field name="updated_at" type="timestamp" uuid="62d0de6c-f896-491b-99db-1840ede2d1fa"/>
  219. <orm-attributes>
  220. <attribute name="table">provincia</attribute>
  221. <attribute name="fillableAll">as-fillable-all</attribute>
  222. </orm-attributes>
  223. </entity>
  224. <association from="\App\Models\Provincia" to="\App\Models\Nazione" caption="Nazione Provincias" owner-alias="provincie" inverse-alias="nazione" many-owner="true" many-inverse="false" uuid="345b5351-9f8a-4d02-9192-1bb27645761d">
  225. <association-field from="nazione_id" to="id" uuid="8f51c513-0361-4147-b7ac-26b56c42011d"/>
  226. <orm-attributes>
  227. <attribute name="onDelete">set null</attribute>
  228. </orm-attributes>
  229. </association>
  230. <entity name="\App\Models\Nazione" local-name="Nazione" namespace="\App\Models" uuid="6128d2f6-88d0-472b-bc71-0a9f49370847">
  231. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="67af633f-42c4-416d-ab1f-6b1c8a36dd82"/>
  232. <field name="nome" type="string" uuid="c98ab5d4-058e-46c3-ae49-5cf78478c8e0"/>
  233. <field name="sigla" type="string" uuid="7ed5c802-64fb-4bba-aca9-0de4a1d1b099"/>
  234. <field name="created_at" type="timestamp" uuid="b7cb1d70-b9a6-441a-aacd-7cd963cbc371"/>
  235. <field name="updated_at" type="timestamp" uuid="b40e30e1-a742-4297-932c-e28291e0a8e4"/>
  236. <orm-attributes>
  237. <attribute name="fillableAll">as-fillable-all</attribute>
  238. <attribute name="table">nazione</attribute>
  239. </orm-attributes>
  240. </entity>
  241. <entity name="\App\Models\Comune" local-name="Comune" namespace="\App\Models" uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa">
  242. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="656af606-c65b-4b92-bac2-4e8a23d286e4"/>
  243. <field name="provincia_id" type="bigInteger" unsigned="true" uuid="e52e1b52-9dd3-4f50-ade3-a01755961201"/>
  244. <field name="nazione_id" type="bigInteger" unsigned="true" uuid="366b0dc8-c30b-4649-a1a2-3819e803595b"/>
  245. <field name="nome" type="string" uuid="02c5a258-0c72-47fc-8a1f-0b0af6c37e38"/>
  246. <field name="codice_catastale" type="string" uuid="efc61454-f98b-49aa-98f2-3e6014129b09"/>
  247. <field name="created_at" type="timestamp" uuid="8f5ae8e3-acaf-40ea-8eba-3139d76454a7"/>
  248. <field name="updated_at" type="timestamp" uuid="e603d21d-ddb5-46bd-929f-94a78dc0c5f5"/>
  249. <orm-attributes>
  250. <attribute name="table">comune</attribute>
  251. <attribute name="fillableAll">as-fillable-all</attribute>
  252. </orm-attributes>
  253. </entity>
  254. <association from="\App\Models\Comune" to="\App\Models\Provincia" caption="Provincia Comunes" owner-alias="comuni" inverse-alias="provincia" many-owner="true" many-inverse="false" uuid="4399e41c-477e-44d7-91db-b1cd4614f294">
  255. <association-field from="provincia_id" to="id" uuid="bb143e14-84bd-4e4a-bc86-6045f340856b"/>
  256. </association>
  257. <association from="\App\Models\Comune" to="\App\Models\Nazione" caption="Nazione Comunes" owner-alias="comuni" inverse-alias="nazione" many-owner="true" many-inverse="false" uuid="299d534d-b5ef-411c-b66b-f4adaaa3b4f1">
  258. <association-field from="nazione_id" to="id" uuid="3bf703ca-9546-4b79-85c0-8febb961d821"/>
  259. <orm-attributes>
  260. <attribute name="onDelete">set null</attribute>
  261. </orm-attributes>
  262. </association>
  263. <entity name="\App\Models\Config" local-name="Config" namespace="\App\Models" uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b">
  264. <field name="key" type="string" required="true" unique="true" primary="true" uuid="badce0d4-64dd-43b2-be60-820ff13951fa"/>
  265. <field name="group" type="string" uuid="8ab75bd9-b755-4637-a230-9e2d5de6ac55"/>
  266. <field name="display_name" type="string" uuid="4210e393-7c3b-4982-8bee-30238073d5bc"/>
  267. <field name="value" type="longText" uuid="e9019a5d-d4b6-4bf5-a014-7963da6341f8"/>
  268. <field name="order" type="integer" uuid="9e54a33a-8637-4273-8027-e0aecc53eeb6"/>
  269. <field name="type" type="string" uuid="e04ce407-d9d0-4c74-9a8d-721deeb63c3c"/>
  270. <field name="created_at" type="timestamp" uuid="fb7f6e10-5782-4506-9258-4b6185860d71"/>
  271. <field name="updated_at" type="timestamp" uuid="370dbe57-9a63-4af4-ad81-b7c7647c273c"/>
  272. <orm-attributes>
  273. <attribute name="table">config</attribute>
  274. <attribute name="fillableAll">as-fillable-all</attribute>
  275. </orm-attributes>
  276. </entity>
  277. <entity name="\App\Models\ConfigNotifiche" local-name="ConfigNotifiche" namespace="\App\Models" uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788">
  278. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="ace37544-4c55-4ca9-8144-2da585fae3d6"/>
  279. <field name="event" type="string" uuid="7ad720b4-ab7e-43a5-b29a-4f434a3d886b"/>
  280. <field name="users" type="json" uuid="973a3230-ede5-4efd-9cfb-84e1c19876b9"/>
  281. <field name="is_attivo" type="boolean" default="1" uuid="72f71f81-6a3e-4ad9-8950-fe2a8542d25c"/>
  282. <field name="created_at" type="timestamp" uuid="2917737f-d22e-4bcb-b966-ebf834a6d20e"/>
  283. <field name="updated_at" type="timestamp" uuid="573df29f-6ff9-4ffc-897e-c72069ab4200"/>
  284. <orm-attributes>
  285. <attribute name="fillableAll">as-fillable-all</attribute>
  286. <attribute name="table">config_notifiche</attribute>
  287. </orm-attributes>
  288. </entity>
  289. <entity name="\App\Models\Prodotto" local-name="Prodotto" namespace="\App\Models" uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5">
  290. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="cd5804ad-d5cc-4203-b38a-e5cfa3ebacac"/>
  291. <field name="codice" type="string" uuid="1bae7c61-7d9b-4795-97ee-fbff819cb95a"/>
  292. <field name="nome" type="string" uuid="5bd47d50-0113-40ed-b737-aa03f5f9401b"/>
  293. <field name="descrizione" type="text" uuid="8aae2f86-f5c8-4281-83fd-b46c70228e53"/>
  294. <field name="tipo" type="string" uuid="c7f8fdd4-0962-4932-bc9a-ca7b96b9b2d8"/>
  295. <field name="unita_misura" type="string" uuid="30a50b48-7975-46d3-82e4-05e90afa3a6e"/>
  296. <field name="prezzo" type="decimal" size="10" uuid="fcdc4a08-e2d3-4fb5-baf2-a90df6fbbb04">
  297. <orm-attributes>
  298. <attribute name="decimal">2</attribute>
  299. </orm-attributes>
  300. </field>
  301. <field name="periodo" type="string" uuid="81b8c54f-f859-4ff3-9ce0-ffbade00aa28"/>
  302. <field name="attivo" type="boolean" default="1" uuid="a40f0518-a638-4247-90a1-6aeac1701428"/>
  303. <field name="prenotabile_online" type="boolean" default="0" uuid="1df3d6c4-020e-48e8-b944-aee2698e66a6"/>
  304. <field name="meta" type="json" uuid="693b4419-0151-4d8b-89a9-ab7b2ce17f9d"/>
  305. <field name="created_at" type="timestamp" uuid="5126112e-189a-4b54-9ff5-cc44da7d60fe"/>
  306. <field name="updated_at" type="timestamp" uuid="e3870d5f-497d-41b4-8e78-09ba31fc34f8"/>
  307. <orm-attributes>
  308. <attribute name="fillableAll">as-fillable-all</attribute>
  309. <attribute name="table">prodotto</attribute>
  310. </orm-attributes>
  311. </entity>
  312. <entity name="\App\Models\ContrattoServizio" local-name="ContrattoServizio" namespace="\App\Models" uuid="58092d28-4a8e-4122-8204-5e009fc16ce6">
  313. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="2fc7e24f-923a-49ea-acb2-82d9a15535a2"/>
  314. <field name="user_id" type="bigInteger" unsigned="true" uuid="a430d266-f99f-4e48-be62-de6daddf22ab"/>
  315. <field name="contratto_template_id" type="bigInteger" unsigned="true" uuid="a97d83fa-0893-4bcc-a1d4-3fba9849789a"/>
  316. <field name="nome" type="string" uuid="94ee2223-9e46-43e2-989b-f75e6a6ce3ca"/>
  317. <field name="costo" type="decimal" size="10" uuid="140deaa1-bdab-4a67-90ac-6b69d96e344e">
  318. <orm-attributes>
  319. <attribute name="decimal">2</attribute>
  320. </orm-attributes>
  321. </field>
  322. <field name="periodo" type="string" uuid="9350c4b3-eab3-464a-9366-c0edf37869ce"/>
  323. <field name="data_inizio" type="date" uuid="36c9fce4-d27b-4b3a-a6b2-58dc0e4dd8a2"/>
  324. <field name="data_fine" type="date" uuid="d3ca8b85-9117-4b55-a455-66150bd31d3e"/>
  325. <field name="collegabile_segnalazioni" type="boolean" default="0" uuid="da43c1da-6158-40bc-bd15-62dddad492a7"/>
  326. <field name="quantita_residua" type="decimal" size="10" uuid="629ff801-824d-4ad7-bc7d-b72a2a3717cf">
  327. <orm-attributes>
  328. <attribute name="decimal">2</attribute>
  329. </orm-attributes>
  330. </field>
  331. <field name="note" type="text" uuid="579649ed-46f6-4371-9692-58e724bf5ca1"/>
  332. <field name="attivo" type="boolean" default="1" uuid="d811fff4-3f7a-488b-9be1-c623c26f43f8"/>
  333. <field name="default_import_email" type="boolean" default="0" uuid="12c38b7e-21ca-4073-9dcd-bed9c1d1f171"/>
  334. <field name="created_at" type="timestamp" uuid="b89c48dd-a31b-4173-98c3-56f688449a23"/>
  335. <field name="updated_at" type="timestamp" uuid="8da87f11-9757-486e-beab-a0b2c1e5d0e9"/>
  336. <orm-attributes>
  337. <attribute name="fillableAll">as-fillable-all</attribute>
  338. <attribute name="table">contratto_servizio</attribute>
  339. </orm-attributes>
  340. </entity>
  341. <association from="\App\Models\ContrattoServizio" to="\App\Models\User" caption="User ContrattoServizios" owner-alias="contrattiServizio" inverse-alias="user" many-owner="true" many-inverse="false" uuid="3842d2b3-d137-47bc-9a10-14b7a860c153">
  342. <association-field from="user_id" to="id" uuid="cf09dd81-f27c-4eb3-a6b8-60c56ff9c629"/>
  343. <orm-attributes>
  344. <attribute name="onDelete">set null</attribute>
  345. </orm-attributes>
  346. </association>
  347. <association from="\App\Models\ContrattoServizio" to="\App\Models\ContrattoTemplate" caption="ContrattoTemplate ContrattoServizios" owner-alias="contrattiServizio" inverse-alias="contrattoTemplate" many-owner="true" many-inverse="false" uuid="4e4e7f6b-b25f-4a8a-8c8d-ab0e6ec93db7">
  348. <association-field from="contratto_template_id" to="id" uuid="f5ecdcde-183a-44d3-9a40-6f73b49289cc"/>
  349. <orm-attributes>
  350. <attribute name="onDelete">set null</attribute>
  351. </orm-attributes>
  352. </association>
  353. <entity name="\App\Models\Offerta" local-name="Offerta" namespace="\App\Models" uuid="f98de9f5-eb6f-467a-8f95-31b70d915946">
  354. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="c3304ea3-9e77-4559-992c-be946ba3e47f"/>
  355. <field name="user_id" type="bigInteger" unsigned="true" uuid="63813fc9-575d-4e6e-810d-b1047497c075"/>
  356. <field name="numero" type="integer" uuid="f023a417-2c0b-4fff-9c80-21d2425be5ce"/>
  357. <field name="titolo" type="string" uuid="5ba72745-a94a-4bf2-b90d-a61505e4a60a"/>
  358. <field name="stato" type="string" uuid="6fbf26fd-3f6a-423d-b93d-48010787778d"/>
  359. <field name="data" type="date" uuid="c1700acb-f03a-4d19-bcf4-aa54690109ec"/>
  360. <field name="data_validita" type="date" uuid="d5f192a6-8011-4b45-9e54-4b8e635facb5"/>
  361. <field name="totale" type="decimal" size="10" uuid="73cbf6f8-9a53-41f7-82f0-1e60cee174f3">
  362. <orm-attributes>
  363. <attribute name="decimal">2</attribute>
  364. </orm-attributes>
  365. </field>
  366. <field name="note" type="text" uuid="74caf115-8e82-457f-b4ff-041634717a84"/>
  367. <field name="path_file" type="string" uuid="a9a104ed-13f8-4798-a6ca-8935b0341cf1"/>
  368. <field name="meta" type="json" uuid="515560f9-be1b-4a21-921e-98fd5ad103b0"/>
  369. <field name="created_at" type="timestamp" uuid="bf09aff4-7fd0-4d51-af42-6aec217b7822"/>
  370. <field name="updated_at" type="timestamp" uuid="42e19ba6-0c54-4ffb-9c8e-1026f077b6af"/>
  371. <orm-attributes>
  372. <attribute name="fillableAll">as-fillable-all</attribute>
  373. <attribute name="table">offerta</attribute>
  374. </orm-attributes>
  375. </entity>
  376. <association from="\App\Models\Offerta" to="\App\Models\User" caption="User Offertas" owner-alias="offerte" inverse-alias="user" many-owner="true" many-inverse="false" uuid="bf45bb05-0679-49af-a7e9-9ae9422675ab">
  377. <association-field from="user_id" to="id" uuid="a54053de-2584-4984-8dbc-ba5a1137571c"/>
  378. <orm-attributes>
  379. <attribute name="onDelete">set null</attribute>
  380. </orm-attributes>
  381. </association>
  382. <entity name="\App\Models\OffertaRiga" local-name="OffertaRiga" namespace="\App\Models" uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6">
  383. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="7fac024b-f96f-4012-9097-aea5a263d403"/>
  384. <field name="offerta_id" type="bigInteger" unsigned="true" uuid="ef151a19-0644-41c0-a0d3-e4c09ea3f25c"/>
  385. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="ff013f74-b127-47b5-91b4-0d0122ab7b40"/>
  386. <field name="descrizione" type="string" uuid="ed5cf628-97fd-47c8-bfd7-fbe70d9fbde1"/>
  387. <field name="quantita" type="decimal" size="10" uuid="a398d67d-eb98-4ed7-8ec2-7b3e6c97d889">
  388. <orm-attributes>
  389. <attribute name="decimal">2</attribute>
  390. </orm-attributes>
  391. </field>
  392. <field name="unita_misura" type="string" uuid="bcfa8042-a56b-4c5e-b727-b95f17d683cf"/>
  393. <field name="prezzo_unitario" type="decimal" size="10" uuid="372c3640-3751-4f24-b56e-bbcc3bf47852">
  394. <orm-attributes>
  395. <attribute name="decimal">2</attribute>
  396. </orm-attributes>
  397. </field>
  398. <field name="sconto" type="decimal" size="10" uuid="12147109-0d9f-4540-9507-b94a0c4a2975">
  399. <orm-attributes>
  400. <attribute name="decimal">2</attribute>
  401. </orm-attributes>
  402. </field>
  403. <field name="ordine" type="integer" default="0" uuid="ec952846-0eff-4955-a147-4033fcfd651e"/>
  404. <field name="note_private" type="text" uuid="d7c52787-0c81-49f9-a3fb-57a94e0a92aa"/>
  405. <field name="tempo_stimato" type="decimal" size="10" uuid="563af2f8-093c-4e5b-baf5-0f2249311f62">
  406. <orm-attributes>
  407. <attribute name="decimal">2</attribute>
  408. </orm-attributes>
  409. </field>
  410. <field name="created_at" type="timestamp" uuid="7dee4720-093d-49e4-aa16-2a9f192f273b"/>
  411. <field name="updated_at" type="timestamp" uuid="dd5d14dc-9b7a-43f6-bce2-8d7bbf3e4909"/>
  412. <orm-attributes>
  413. <attribute name="fillableAll">as-fillable-all</attribute>
  414. <attribute name="table">offerta_riga</attribute>
  415. </orm-attributes>
  416. </entity>
  417. <association from="\App\Models\OffertaRiga" to="\App\Models\Offerta" caption="Offerta OffertaRigas" owner-alias="righe" inverse-alias="offerta" many-owner="true" many-inverse="false" uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3">
  418. <association-field from="offerta_id" to="id" uuid="68a5419f-adef-4d6e-9b28-873c2fbc3d50"/>
  419. <orm-attributes>
  420. <attribute name="onDelete">set null</attribute>
  421. </orm-attributes>
  422. </association>
  423. <association from="\App\Models\OffertaRiga" to="\App\Models\Prodotto" caption="Prodotto OffertaRigas" owner-alias="offerteRiga" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="ad855143-f6b1-4d71-9d42-409e76e1efb7">
  424. <association-field from="prodotto_id" to="id" uuid="0e98c32c-512b-47c3-bc4f-b3ec66dff09f"/>
  425. <orm-attributes>
  426. <attribute name="onDelete">set null</attribute>
  427. </orm-attributes>
  428. </association>
  429. <entity name="\App\Models\OrdineLavoro" local-name="OrdineLavoro" namespace="\App\Models" uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0">
  430. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="2edeaae9-ee24-486a-8915-68701af23fa3"/>
  431. <field name="user_id" type="bigInteger" unsigned="true" uuid="4b1a6baf-3a48-4170-83a5-361faef16291"/>
  432. <field name="numero" type="integer" uuid="f3a008ed-3125-4530-b9d4-0296c190226c"/>
  433. <field name="titolo" type="string" uuid="0c4cb8f3-62b6-40b3-b9b5-ee228663551a"/>
  434. <field name="stato" type="string" uuid="6e27b2cc-35d1-4694-a86a-1713e30100fe"/>
  435. <field name="percentuale_avanzamento" type="integer" size="5" default="0" uuid="3c3ba72a-22ea-40b8-8395-c2e8a878d908">
  436. <orm-attributes>
  437. <attribute name="decimal">2</attribute>
  438. </orm-attributes>
  439. </field>
  440. <field name="data_apertura" type="date" uuid="19096a86-de29-4ab5-8689-d9edd6f93644"/>
  441. <field name="data_chiusura" type="date" uuid="ea74aee1-de7e-4feb-aeea-f59a2806f7c0"/>
  442. <field name="note" type="text" uuid="dbfdfb46-0d9e-4921-8ee4-b702cb3988f4"/>
  443. <field name="meta" type="json" uuid="bcce23aa-fa1e-4b27-8fb0-260ac25113ef"/>
  444. <field name="created_at" type="timestamp" uuid="310c81ea-88a2-489a-9223-21b77da5cd21"/>
  445. <field name="updated_at" type="timestamp" uuid="e690deea-d3d1-415c-a077-cfe5408341e6"/>
  446. <orm-attributes>
  447. <attribute name="fillableAll">as-fillable-all</attribute>
  448. <attribute name="table">ordine_lavoro</attribute>
  449. </orm-attributes>
  450. </entity>
  451. <association from="\App\Models\OrdineLavoro" to="\App\Models\User" caption="User OrdineLavoros" owner-alias="ordiniLavoro" inverse-alias="user" many-owner="true" many-inverse="false" uuid="a005da89-ed4b-4145-bca2-b27aaa8fce4b">
  452. <association-field from="user_id" to="id" uuid="ea6d7186-c6ee-401b-97b4-3274e72831c5"/>
  453. <orm-attributes>
  454. <attribute name="onDelete">set null</attribute>
  455. </orm-attributes>
  456. </association>
  457. <entity name="\App\Models\OrdineLavoroHasOfferta" local-name="OrdineLavoroHasOfferta" namespace="\App\Models" uuid="98806966-1270-452c-b1ab-cdae6e0016b6">
  458. <field name="offerta_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="cba87bc3-ab11-4af2-bbb8-6830ad23c01a"/>
  459. <field name="ordine_lavoro_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="d2f51969-071a-43c1-b95f-680166e51783"/>
  460. </entity>
  461. <many-to-many mn-entity="\App\Models\OrdineLavoroHasOfferta" caption="OrdineLavoro to Offerta" uuid="2f367518-de50-431b-a35b-845be0f0d6a1">
  462. <many-to-many-entity name="\App\Models\Offerta" owning-side="true" alias="offerte" uuid="23689857-4279-44e9-9a77-f58deb0455e3">
  463. <many-to-many-field from="offerta_id" to="id" uuid="565f4711-1df5-45ad-949d-8c08cc7d81ec"/>
  464. </many-to-many-entity>
  465. <many-to-many-entity name="\App\Models\OrdineLavoro" owning-side="false" alias="ordiniLavoro" uuid="f557820c-6dac-427e-ac7c-ffa88be2cce4">
  466. <many-to-many-field from="ordine_lavoro_id" to="id" uuid="bf9afc7e-7bb7-43dd-a081-3eac94839d30"/>
  467. </many-to-many-entity>
  468. </many-to-many>
  469. <entity name="\App\Models\ContrattoTemplate" local-name="ContrattoTemplate" namespace="\App\Models" uuid="735de4a0-df7b-48d1-a686-8b7b88229151">
  470. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="a67ea0e6-cf8e-4afb-a469-be87c6fb17cf"/>
  471. <field name="codice" type="string" uuid="dc5fcea9-5c72-4086-a311-b72bfcfec4b1"/>
  472. <field name="nome" type="string" uuid="d8272d1d-d423-4e6f-815d-3fb649c3fc1e"/>
  473. <field name="descrizione" type="text" uuid="a553726d-4bbf-47b7-8061-aca7e126b5eb"/>
  474. <field name="periodo" type="string" uuid="46172701-6a39-4a9f-a334-f93507b0a960"/>
  475. <field name="attivo" type="boolean" default="1" uuid="930b1171-9a12-44df-abaa-54c95cd9a5a5"/>
  476. <field name="costo_base" type="decimal" size="10" uuid="b6196b2c-5609-4d95-8765-9a3fef75f1f3">
  477. <orm-attributes>
  478. <attribute name="decimal">2</attribute>
  479. </orm-attributes>
  480. </field>
  481. <field name="meta" type="json" uuid="ad26f4dd-95bb-4278-a555-9672ee9bbb99"/>
  482. <field name="created_at" type="timestamp" uuid="8f53b06a-b7e5-4490-b02d-9a777ae9b33d"/>
  483. <field name="updated_at" type="timestamp" uuid="4a34b942-0d52-4c5b-9ab4-42cf1990284a"/>
  484. <orm-attributes>
  485. <attribute name="fillableAll">as-fillable-all</attribute>
  486. <attribute name="table">contratto_template</attribute>
  487. </orm-attributes>
  488. </entity>
  489. <entity name="\App\Models\ContrattoTemplateTodo" local-name="ContrattoTemplateTodo" namespace="\App\Models" uuid="cdb29815-3972-4ad8-8d0a-f3265469539f">
  490. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="663ad965-eeea-4054-85e0-0ee4f376c809"/>
  491. <field name="contratto_template_id" type="bigInteger" unsigned="true" uuid="6648a1e1-dcaf-447e-be6b-91b1e3291dd7"/>
  492. <field name="titolo" type="string" uuid="f7a50105-eaa2-44f0-bbb3-8e85521f9993"/>
  493. <field name="descrizione" type="text" uuid="eb2c2957-2e28-44d2-a863-fae44f0c57ac"/>
  494. <field name="tipo_schedulazione" type="string" uuid="dbb7da2b-d5e3-4bd9-8914-42e837e14452"/>
  495. <field name="cron" type="string" uuid="bb7c1237-cf7d-4c74-9ada-7dfcd5556c4d"/>
  496. <field name="mese" type="integer" uuid="8565fdbc-6300-47d1-95c3-9f551b83e3f7"/>
  497. <field name="giorno" type="integer" uuid="d3840541-257a-480f-b435-f90387c73a6e"/>
  498. <field name="offset_giorni" type="integer" uuid="5542385e-4e90-4e00-a1df-67b922783054"/>
  499. <field name="priorita" type="string" uuid="6fea7b43-9ac5-46e6-abc2-cc536b3ad9a1"/>
  500. <field name="tipo_segnalazione" type="string" uuid="ce5542d0-0ec5-4060-b96b-ca3c4d24d622"/>
  501. <field name="ordine" type="integer" default="0" uuid="fc2f2ea2-f5c4-4869-8b7a-d5506a9decd7"/>
  502. <field name="attivo" type="boolean" default="1" uuid="1a0ad012-c968-4da2-81df-8c3cf2f028ab"/>
  503. <field name="meta" type="json" uuid="8cbf484b-40ba-4b06-b460-ee96af0abf77"/>
  504. <field name="created_at" type="timestamp" uuid="f74ad5f7-3cfc-4f36-8d04-d34e9450761e"/>
  505. <field name="updated_at" type="timestamp" uuid="0dd4eddd-2ba5-4ecd-a172-ed2aed451dde"/>
  506. <orm-attributes>
  507. <attribute name="fillableAll">as-fillable-all</attribute>
  508. <attribute name="table">contratto_template_todo</attribute>
  509. </orm-attributes>
  510. </entity>
  511. <association from="\App\Models\ContrattoTemplateTodo" to="\App\Models\ContrattoTemplate" caption="ContrattoTemplate ContrattoTemplateTodos" owner-alias="todos" inverse-alias="contrattoTemplate" many-owner="true" many-inverse="false" uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87">
  512. <association-field from="contratto_template_id" to="id" uuid="585c20ce-9da8-4fe2-9926-0681cd0c32f1"/>
  513. <orm-attributes>
  514. <attribute name="onDelete">cascade</attribute>
  515. </orm-attributes>
  516. </association>
  517. <entity name="\App\Models\ContrattoServizioTodo" local-name="ContrattoServizioTodo" namespace="\App\Models" uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6">
  518. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="95b74961-e2b4-4640-a235-4938034902c5"/>
  519. <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="f516123c-2034-4aca-9213-397460593262"/>
  520. <field name="contratto_template_todo_id" type="bigInteger" unsigned="true" uuid="0d340f14-2c61-4b71-b1ac-d01d0ff45adc"/>
  521. <field name="titolo" type="string" uuid="cc0106de-1acb-4da9-84f3-53c8941c0619"/>
  522. <field name="descrizione" type="text" uuid="020ff5ed-d5a6-43a2-a278-ac4a2b764959"/>
  523. <field name="tipo_schedulazione" type="string" uuid="f8841146-18f3-4906-9553-23f29e60ae3d"/>
  524. <field name="cron" type="string" uuid="83e3ed9d-ec16-42c3-8e29-adb77a03bb79"/>
  525. <field name="mese" type="integer" uuid="89138272-52f9-4889-a719-456357a0a27f"/>
  526. <field name="giorno" type="integer" uuid="e00540bf-6f4a-47ae-9820-da5a5f1d638f"/>
  527. <field name="offset_giorni" type="integer" uuid="7746bf3a-6d93-4109-ad6f-0147316b410a"/>
  528. <field name="data_prossima" type="date" uuid="396211be-d355-4cba-8b01-3fc9433b79a5"/>
  529. <field name="data_ultima" type="date" uuid="6e791de8-605c-47ad-9cee-a91fe1201068"/>
  530. <field name="priorita" type="string" uuid="1bb1e02d-a910-4d25-807f-c2c980d4e796"/>
  531. <field name="tipo_segnalazione" type="string" uuid="a21a2141-f099-452a-99ca-9c58d337b73f"/>
  532. <field name="ordine" type="integer" default="0" uuid="7a97d379-d5bd-4f9d-946c-6ae1c90ba703"/>
  533. <field name="attivo" type="boolean" default="1" uuid="186a4b94-28db-416d-85b6-c29eeeb39485"/>
  534. <field name="meta" type="json" uuid="a331b115-cc85-4785-961a-a2d38cab807c"/>
  535. <field name="created_at" type="timestamp" uuid="31e43e01-782b-4d66-a47a-3c582ac65491"/>
  536. <field name="updated_at" type="timestamp" uuid="c1aacd09-e455-4e64-b398-8bd590da01ad"/>
  537. <orm-attributes>
  538. <attribute name="fillableAll">as-fillable-all</attribute>
  539. <attribute name="table">contratto_servizio_todo</attribute>
  540. </orm-attributes>
  541. </entity>
  542. <association from="\App\Models\ContrattoServizioTodo" to="\App\Models\ContrattoServizio" caption="ContrattoServizio ContrattoServizioTodos" owner-alias="todos" inverse-alias="contrattoServizio" many-owner="true" many-inverse="false" uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870">
  543. <association-field from="contratto_servizio_id" to="id" uuid="599210f0-f87a-4280-badd-0717a4fbcd40"/>
  544. <orm-attributes>
  545. <attribute name="onDelete">cascade</attribute>
  546. </orm-attributes>
  547. </association>
  548. <association from="\App\Models\ContrattoServizioTodo" to="\App\Models\ContrattoTemplateTodo" caption="ContrattoTemplateTodo ContrattoServizioTodos" owner-alias="contrattoServizioTodos" inverse-alias="contrattoTemplateTodo" many-owner="true" many-inverse="false" uuid="e29244ac-f1e5-4629-bf06-2d29d4a7664c">
  549. <association-field from="contratto_template_todo_id" to="id" uuid="5b213914-00e8-4c89-9150-7022b294766a"/>
  550. <orm-attributes>
  551. <attribute name="onDelete">set null</attribute>
  552. </orm-attributes>
  553. </association>
  554. <entity name="\App\Models\ContrattoTemplateRiga" local-name="ContrattoTemplateRiga" namespace="\App\Models" uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d">
  555. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="c594c8bc-e6be-4b44-b28a-8ddfe4893c97"/>
  556. <field name="contratto_template_id" type="bigInteger" unsigned="true" uuid="655f5603-7405-4da7-b945-492a74b82232"/>
  557. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="891eb65f-5e50-47a5-8d6a-48dd6f5a76ff"/>
  558. <field name="quantita" type="decimal" size="10" uuid="674f04ea-e6bd-4015-b80d-531ef3f4092d">
  559. <orm-attributes>
  560. <attribute name="decimal">2</attribute>
  561. </orm-attributes>
  562. </field>
  563. <field name="unita_misura" type="string" uuid="8a770361-3ac1-4f27-a2b5-0f7375fea6c4"/>
  564. <field name="prezzo_unitario" type="decimal" size="10" uuid="a0418b73-b1f5-444c-b546-e7fe1216b4a9">
  565. <orm-attributes>
  566. <attribute name="decimal">2</attribute>
  567. </orm-attributes>
  568. </field>
  569. <field name="periodo" type="string" uuid="cb3ffa97-9aa1-4e33-9de6-f2dc5b69347e"/>
  570. <field name="note" type="text" uuid="afecd4d2-26d4-4639-a390-be8b02023ba1"/>
  571. <field name="ordine" type="integer" default="0" uuid="509ec89f-2c7c-49b4-9083-0d1304760ef1"/>
  572. <field name="created_at" type="timestamp" uuid="0618fd13-368f-46d4-9c9f-cd649579384b"/>
  573. <field name="updated_at" type="timestamp" uuid="9d5c1e64-5a11-4dd5-bbda-7287d5c91307"/>
  574. <orm-attributes>
  575. <attribute name="fillableAll">as-fillable-all</attribute>
  576. <attribute name="table">contratto_template_riga</attribute>
  577. </orm-attributes>
  578. </entity>
  579. <association from="\App\Models\ContrattoTemplateRiga" to="\App\Models\Prodotto" caption="Prodotto ContrattoTemplateRigas" owner-alias="contrattiTemplateRiga" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="64df4dd6-cb23-408a-a4f1-e1a723103aa0">
  580. <association-field from="prodotto_id" to="id" uuid="ddbd2bf2-b433-47b1-9c3b-486b86f25032"/>
  581. <orm-attributes>
  582. <attribute name="onDelete">set null</attribute>
  583. </orm-attributes>
  584. </association>
  585. <association from="\App\Models\ContrattoTemplateRiga" to="\App\Models\ContrattoTemplate" caption="ContrattoTemplate ContrattoTemplateRigas" owner-alias="righe" inverse-alias="contrattoTemplate" many-owner="true" many-inverse="false" uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f">
  586. <association-field from="contratto_template_id" to="id" uuid="868068aa-7b93-4c95-ae09-588db5fe51e2"/>
  587. <orm-attributes>
  588. <attribute name="onDelete">cascade</attribute>
  589. </orm-attributes>
  590. </association>
  591. <entity name="\App\Models\ContrattoServizioRiga" local-name="ContrattoServizioRiga" namespace="\App\Models" uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca">
  592. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="e39c970f-e64a-44c5-ad58-1701397cd924"/>
  593. <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="0a5b2558-c482-448c-bbd4-438a5ce8a905"/>
  594. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="1365f409-2ba4-46f1-8781-bff463c01a2c"/>
  595. <field name="quantita" type="decimal" size="10" uuid="1b2edca7-2ad1-47de-971e-5c1b82e7a49d">
  596. <orm-attributes>
  597. <attribute name="decimal">2</attribute>
  598. </orm-attributes>
  599. </field>
  600. <field name="unita_misura" type="string" uuid="d92bbf06-a497-4525-afd5-a550a99f8ef3"/>
  601. <field name="prezzo_unitario" type="decimal" size="10" uuid="8db2eb16-6b67-402e-bd36-c9e662a0f5a7">
  602. <orm-attributes>
  603. <attribute name="decimal">2</attribute>
  604. </orm-attributes>
  605. </field>
  606. <field name="sconto_tipo" type="string" uuid="dae66f10-abd5-4d06-a7df-7a1dc16d3eae"/>
  607. <field name="sconto_valore" type="decimal" size="10" uuid="d9652508-34dc-4ccf-a4d4-555f1bb614ca">
  608. <orm-attributes>
  609. <attribute name="decimal">2</attribute>
  610. </orm-attributes>
  611. </field>
  612. <field name="periodo" type="string" uuid="ff878a32-4891-4622-8bd1-0c053da212ff"/>
  613. <field name="data_inizio" type="date" uuid="1001d7d0-b501-46c8-872e-ef7772ad9df9"/>
  614. <field name="data_fine" type="date" uuid="c5bc5aa0-3cee-4617-9ef7-aec55fe6396a"/>
  615. <field name="note" type="text" uuid="73662125-5f5e-4918-bade-f5428ab2def4"/>
  616. <field name="ordine" type="integer" default="0" uuid="953a6161-5754-4c09-8248-bd4f63383948"/>
  617. <field name="created_at" type="timestamp" uuid="d01c008b-3dd8-4f7d-87a5-5b74dc328f5c"/>
  618. <field name="updated_at" type="timestamp" uuid="23bc72d4-6532-4422-b813-f4689c8b34ad"/>
  619. <orm-attributes>
  620. <attribute name="fillableAll">as-fillable-all</attribute>
  621. <attribute name="table">contratto_servizio_riga</attribute>
  622. </orm-attributes>
  623. </entity>
  624. <association from="\App\Models\ContrattoServizioRiga" to="\App\Models\Prodotto" caption="Prodotto ContrattoTemplateRigas" owner-alias="contrattiServizioRiga" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="5c8d1dc1-15ed-4379-addb-6b0addcd047e">
  625. <association-field from="prodotto_id" to="id" uuid="e1b63a6d-9fc1-48b8-8a2a-54a34489ff3a"/>
  626. <orm-attributes>
  627. <attribute name="onDelete">set null</attribute>
  628. </orm-attributes>
  629. </association>
  630. <association from="\App\Models\ContrattoServizioRiga" to="\App\Models\ContrattoServizio" caption="ContrattoServizio ContrattoServizioRigas" owner-alias="righe" inverse-alias="contrattoServizio" many-owner="true" many-inverse="false" uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f">
  631. <association-field from="contratto_servizio_id" to="id" uuid="79825cde-3073-435d-9dec-fec172cbf19d"/>
  632. <orm-attributes>
  633. <attribute name="onDelete">cascade</attribute>
  634. </orm-attributes>
  635. </association>
  636. <entity name="\App\Models\PromoCode" local-name="PromoCode" namespace="\App\Models" uuid="c0890191-d438-495f-819a-1a045d21a357">
  637. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="82e57f04-7b3a-4ec9-9cb1-8ab821e49024"/>
  638. <field name="codice" type="string" uuid="ee767607-dea9-4828-bf9f-780b10ab3127"/>
  639. <field name="sconto_percentuale" type="decimal" size="10" uuid="fe6bedd5-c44a-405d-af80-868f871e09fe">
  640. <orm-attributes>
  641. <attribute name="decimal">2</attribute>
  642. </orm-attributes>
  643. </field>
  644. <field name="attivo" type="boolean" default="1" uuid="5ffde063-aea1-49de-a6b4-c8b710e11c5d"/>
  645. <field name="valido_dal" type="date" uuid="fba28412-e36c-4bb9-bbbc-a536cf12ae20"/>
  646. <field name="valido_al" type="date" uuid="6b62a9cc-8f2b-45cb-9396-b3a73e3201be"/>
  647. <field name="usi_max" type="integer" uuid="b6e44e7c-fe55-4914-9772-691b14832075"/>
  648. <field name="usi_count" type="integer" uuid="866015d2-09d0-4395-891c-a6c66cd27230"/>
  649. <field name="note" type="text" uuid="0945421e-d222-4ba8-aa95-762a58678b7e"/>
  650. <field name="created_at" type="timestamp" uuid="108d2bec-f727-41af-9a47-f1d29b0be843"/>
  651. <field name="updated_at" type="timestamp" uuid="b433b376-1050-49b0-9c1d-86f0b4aef896"/>
  652. <orm-attributes>
  653. <attribute name="fillableAll">as-fillable-all</attribute>
  654. <attribute name="table">promo_code</attribute>
  655. </orm-attributes>
  656. </entity>
  657. <entity name="\App\Models\PromoCodeHasProdotto" local-name="PromoCodeHasProdotto" namespace="\App\Models" uuid="273deed0-9f6e-4aca-b64b-22a657db2a21">
  658. <field name="prodotto_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="2ded0962-e47f-4bee-94d0-364923a9aace"/>
  659. <field name="promo_code_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="cbfc3db8-20fd-4fce-8dff-402604dd3d20"/>
  660. </entity>
  661. <many-to-many mn-entity="\App\Models\PromoCodeHasProdotto" caption="PromoCode to Prodotto" uuid="b628247f-6792-430c-970b-aa651c7f7870">
  662. <many-to-many-entity name="\App\Models\Prodotto" owning-side="true" alias="prodotti" uuid="b51dbffa-75cf-4b1a-92eb-83a8ac62d775">
  663. <many-to-many-field from="prodotto_id" to="id" uuid="727ea3ce-db87-4aba-8a83-db60bda0e7e4"/>
  664. </many-to-many-entity>
  665. <many-to-many-entity name="\App\Models\PromoCode" owning-side="false" alias="promoCodes" uuid="90017630-36c3-4e45-b433-7eec25a364e8">
  666. <many-to-many-field from="promo_code_id" to="id" uuid="3155e17d-c9ee-4911-a98d-ca14e7351d0b"/>
  667. </many-to-many-entity>
  668. </many-to-many>
  669. <entity name="\App\Models\AcquistoServizio" local-name="AcquistoServizio" namespace="\App\Models" uuid="c9dad18d-0272-4878-8404-fd0db896b447">
  670. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="f948a486-f887-46c0-96be-87ce5f4c6945"/>
  671. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="bc680727-da9a-43e4-8291-067fcdb491db"/>
  672. <field name="promo_code_id" type="bigInteger" unsigned="true" uuid="c4101336-5ef2-4fe8-a222-ba16450e4317"/>
  673. <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="43d5b052-1494-4bd6-97ac-391c515d37f5"/>
  674. <field name="nome" type="string" uuid="27d91a86-9d2f-4311-a923-bd97abde2241"/>
  675. <field name="email" type="string" uuid="4ad66228-0077-4bed-a371-b6784f4e28eb"/>
  676. <field name="telefono" type="string" uuid="0cbd8803-1513-4000-ac24-428a9b217ea9"/>
  677. <field name="modalita" type="string" uuid="adcbaf5e-7e09-422b-a6ce-4016c7bab0de"/>
  678. <field name="prezzo_servizio" type="decimal" size="10" uuid="6d3fd49c-d838-47c5-b212-381b9a2a920e">
  679. <orm-attributes>
  680. <attribute name="decimal">2</attribute>
  681. </orm-attributes>
  682. </field>
  683. <field name="costo_domicilio" type="decimal" size="10" uuid="b993cd59-1578-4198-bca0-d48c3fa882a1">
  684. <orm-attributes>
  685. <attribute name="decimal">2</attribute>
  686. </orm-attributes>
  687. </field>
  688. <field name="sconto" type="decimal" size="10" uuid="6874d156-0200-4215-80c3-2d6a7719eda3">
  689. <orm-attributes>
  690. <attribute name="decimal">2</attribute>
  691. </orm-attributes>
  692. </field>
  693. <field name="totale" type="decimal" size="10" uuid="88cf3d8e-2f2c-4c58-9c13-da2d462b4d16">
  694. <orm-attributes>
  695. <attribute name="decimal">2</attribute>
  696. </orm-attributes>
  697. </field>
  698. <field name="provider" type="string" uuid="e66150ce-7775-4426-959a-00e799f75568"/>
  699. <field name="payment_status" type="string" uuid="463c8589-2ec6-433c-b78e-f173cf9787b7"/>
  700. <field name="condizioni_accettate_at" type="dateTime" uuid="4a75c4b5-5391-4088-a88d-14beadfb0914"/>
  701. <field name="token" type="string" uuid="3c187398-c6bd-42b8-a22c-0674e1579405"/>
  702. <field name="meta" type="json" uuid="9b9bd179-d249-4d73-a35d-1811619012df"/>
  703. <field name="codice_fiscale" type="string" uuid="ce0d688a-8a3b-4b93-a5b1-34c449881314"/>
  704. <field name="indirizzo" type="string" uuid="43f589c6-38d2-4b3d-a009-daf87264a3f9"/>
  705. <field name="note_cliente" type="text" uuid="88543171-e695-4be3-acfe-8955f90ef825"/>
  706. <field name="note_operatore" type="string" uuid="d992c256-dd60-40f7-8032-01c55e6b759b"/>
  707. <field name="created_at" type="timestamp" uuid="af995e1a-0223-486e-98d0-85d429fa3d9b"/>
  708. <field name="updated_at" type="timestamp" uuid="fd6b9919-0139-45f2-b4e2-f3cc84321316"/>
  709. <orm-attributes>
  710. <attribute name="fillableAll">as-fillable-all</attribute>
  711. <attribute name="table">acquisto_servizio</attribute>
  712. </orm-attributes>
  713. </entity>
  714. <association from="\App\Models\AcquistoServizio" to="\App\Models\Prodotto" caption="Prodotto AcquistoServizios" owner-alias="acquistiServizio" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="d49573ad-aa71-43d3-a053-0858f655cd29">
  715. <association-field from="prodotto_id" to="id" uuid="cbfb0c26-6096-4ff5-95ec-766af130bf9c"/>
  716. <orm-attributes>
  717. <attribute name="onDelete">set null</attribute>
  718. </orm-attributes>
  719. </association>
  720. <association from="\App\Models\AcquistoServizio" to="\App\Models\PromoCode" caption="PromoCode AcquistoServizios" owner-alias="acquistiServizio" inverse-alias="promoCode" many-owner="true" many-inverse="false" uuid="c227ab02-8c3d-4a91-88a1-51e115f830a0">
  721. <association-field from="promo_code_id" to="id" uuid="35849a96-4291-4068-a130-a6570917a0cc"/>
  722. <orm-attributes>
  723. <attribute name="onDelete">set null</attribute>
  724. </orm-attributes>
  725. </association>
  726. <association from="\App\Models\AcquistoServizio" to="\App\Models\Segnalazione" caption="Segnalazione AcquistoServizios" owner-alias="acquistoServizios" inverse-alias="segnalazione" many-owner="true" many-inverse="false" uuid="b4bf7317-84eb-4d04-889e-5a8fcf84b12f">
  727. <association-field from="segnalazione_id" to="id" uuid="54f240d3-c752-4594-9da1-2f1f569d36c8"/>
  728. <orm-attributes>
  729. <attribute name="onDelete">set null</attribute>
  730. </orm-attributes>
  731. </association>
  732. <entity name="\App\Models\ProdottoTodo" local-name="ProdottoTodo" namespace="\App\Models" uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1">
  733. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="87bde1ea-7640-400e-a7d1-0462489ae11d"/>
  734. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="25811152-45de-471d-8564-cc81ef9786e8"/>
  735. <field name="titolo" type="string" uuid="a603f5de-b1a1-4f62-bb8c-f4f1cd7c3f50"/>
  736. <field name="descrizione" type="text" uuid="985444a2-483b-4a8c-a899-1479af35314b"/>
  737. <field name="ordine" type="integer" default="0" uuid="95190e25-ec45-4882-b288-e38a0db8ed74"/>
  738. <field name="attivo" type="boolean" default="1" uuid="d64d14fd-6ac7-40bc-9f92-3139b413f803"/>
  739. <field name="obbligatorio" type="boolean" default="0" uuid="07db0aa3-81fe-4d89-a496-04842f0d087b"/>
  740. <field name="meta" type="json" uuid="af4eba12-2a21-4023-bd8e-da0d4b46e265"/>
  741. <field name="public" type="boolean" default="1" uuid="f6354bf0-0cf6-43e5-9df8-bcf6c63ed4bd"/>
  742. <field name="created_at" type="timestamp" uuid="c0946141-13ab-487a-b958-6faee53e5b08"/>
  743. <field name="updated_at" type="timestamp" uuid="27d28691-d311-4d90-9e47-6a56544091dc"/>
  744. <orm-attributes>
  745. <attribute name="fillableAll">as-fillable-all</attribute>
  746. <attribute name="table">prodotto_todo</attribute>
  747. </orm-attributes>
  748. </entity>
  749. <association from="\App\Models\ProdottoTodo" to="\App\Models\Prodotto" caption="Prodotto ProdottoTodos" owner-alias="todos" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6">
  750. <association-field from="prodotto_id" to="id" uuid="8739cbb8-97d0-4b24-bdf2-7218bba13cf2"/>
  751. <orm-attributes>
  752. <attribute name="onDelete">cascade</attribute>
  753. </orm-attributes>
  754. </association>
  755. <entity name="\App\Models\SegnalazioneTodo" local-name="SegnalazioneTodo" namespace="\App\Models" uuid="05f7d8b0-095f-456c-96ec-3980b0435855">
  756. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="1df0218e-6128-4831-9b3b-2eac58ffa182"/>
  757. <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="d14a0c59-6b66-4328-bd55-de2d7a0a27a6"/>
  758. <field name="prodotto_todo_id" type="bigInteger" unsigned="true" uuid="a48df42a-6791-41b7-92a8-0b02e7f25ca5"/>
  759. <field name="completato_da_id" type="bigInteger" unsigned="true" uuid="fdee23c2-9175-4495-99b4-631761149856"/>
  760. <field name="titolo" type="string" uuid="cb9d1238-a216-4d6d-b75b-890b532e6073"/>
  761. <field name="descrizione" type="text" uuid="192661a9-3d18-4eda-840c-e03991eeb59f"/>
  762. <field name="ordine" type="integer" default="0" uuid="50402be7-5614-49a1-9da9-ab614274f510"/>
  763. <field name="obbligatorio" type="boolean" default="0" uuid="4cafcf9d-7b00-4834-aa70-cdec0fd04dea"/>
  764. <field name="completato_at" type="dateTime" uuid="49c1f168-39e6-4c8a-974f-e8897ce76e15"/>
  765. <field name="meta" type="json" uuid="2c3de855-3f52-411b-8490-0c4367d21605"/>
  766. <field name="public" type="boolean" default="1" uuid="67bb376a-567c-486e-a285-d1a52b515c00"/>
  767. <field name="created_at" type="timestamp" uuid="eeb4f415-6d04-4886-8c4a-b24732fd87ba"/>
  768. <field name="updated_at" type="timestamp" uuid="b8abd05e-4682-4f4e-ad50-cc3980955c82"/>
  769. <orm-attributes>
  770. <attribute name="fillableAll">as-fillable-all</attribute>
  771. <attribute name="table">segnalazione_todo</attribute>
  772. </orm-attributes>
  773. </entity>
  774. <association from="\App\Models\SegnalazioneTodo" to="\App\Models\Segnalazione" caption="Segnalazione SegnalazioneTodos" owner-alias="todos" inverse-alias="segnalazione" many-owner="true" many-inverse="false" uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743">
  775. <association-field from="segnalazione_id" to="id" uuid="7c11bde8-f541-4a43-aa6b-a8583a591dbe"/>
  776. <orm-attributes>
  777. <attribute name="onDelete">cascade</attribute>
  778. </orm-attributes>
  779. </association>
  780. <association from="\App\Models\SegnalazioneTodo" to="\App\Models\ProdottoTodo" caption="ProdottoTodo SegnalazioneTodos" owner-alias="segnalazioneTodos" inverse-alias="prodottoTodo" many-owner="true" many-inverse="false" uuid="05c3f975-b61c-490e-aa04-080772b499ad">
  781. <association-field from="prodotto_todo_id" to="id" uuid="86840487-55f9-4adc-b5fe-98379305f899"/>
  782. <orm-attributes>
  783. <attribute name="onDelete">set null</attribute>
  784. </orm-attributes>
  785. </association>
  786. <association from="\App\Models\SegnalazioneTodo" to="\App\Models\User" caption="User SegnalazioneTodos" owner-alias="segnalazioneTodos" inverse-alias="completatoDa" many-owner="true" many-inverse="false" uuid="eb76c46e-4fae-41a5-8cca-e38e69788e6d">
  787. <association-field from="completato_da_id" to="id" uuid="1422f882-923a-4fb9-ba53-b782043d1aad"/>
  788. </association>
  789. <entity name="\App\Models\CasellaImap" local-name="CasellaImap" namespace="\App\Models" uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1">
  790. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="448cba2f-fa91-47fd-af2a-5493103bdb9b"/>
  791. <field name="nome" type="string" uuid="ef188830-4927-4885-a15a-649d7856e40d"/>
  792. <field name="host" type="string" uuid="dacc8a03-04c5-46e0-a21c-f26bfe95f619"/>
  793. <field name="porta" type="smallInteger" default="993" unsigned="true" uuid="2e2a46f5-974a-4f5a-96f7-22d45b5a0577"/>
  794. <field name="encryption" type="string" default="ssl" uuid="a2086dd6-3672-4254-abfb-4b97c90ec015"/>
  795. <field name="valida_certificato" type="boolean" default="1" uuid="7a9dbe8a-de13-41b1-8ffa-09a1fd9e2a87"/>
  796. <field name="username" type="string" uuid="8882e90a-533c-497b-baeb-bf86a45d4110"/>
  797. <field name="password" type="string" uuid="42a2f565-6d2c-423c-a2f5-9854f208e63e"/>
  798. <field name="protocollo" type="string" default="imap" uuid="2f407c8d-76dc-402f-9ad2-942f76e77ad5"/>
  799. <field name="cartella" type="string" default="INBOX" uuid="52c3622c-e39a-4a55-89f7-04fee69d5003"/>
  800. <field name="cartella_processate" type="string" uuid="aef91ef0-5429-4ed2-af72-88827e34850d"/>
  801. <field name="solo_non_lette" type="boolean" default="1" uuid="2237f4e2-1eca-4824-a4ee-eb3ec465f002"/>
  802. <field name="marca_come_letta" type="boolean" default="1" uuid="988c2976-20eb-4f1a-b066-70c4cfa2c4ec"/>
  803. <field name="sposta_processate" type="boolean" default="1" uuid="7ff6b7a2-766d-4651-974c-0b30815fd5fb"/>
  804. <field name="attivo" type="boolean" default="1" uuid="ffa286c1-d955-4f88-9303-45d7bcaf21ae"/>
  805. <field name="ultimo_controllo_at" type="timestamp" uuid="0b4175e0-b5db-4a00-8e90-87866ec21aaf"/>
  806. <field name="ultimo_errore" type="text" uuid="be268580-0630-471f-a36c-33b5fc6c7504"/>
  807. <field name="created_at" type="timestamp" uuid="04d91505-3ffd-4814-957d-373115a63411"/>
  808. <field name="updated_at" type="timestamp" uuid="a926e66a-b866-4393-95d9-685fc390e55d"/>
  809. <orm-attributes>
  810. <attribute name="fillableAll">as-fillable-all</attribute>
  811. <attribute name="table">casella_imap</attribute>
  812. </orm-attributes>
  813. </entity>
  814. <entity name="\App\Models\Fattura" local-name="Fattura" namespace="\App\Models" uuid="68922686-8dc2-403e-a281-a0efcdf39a82">
  815. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="8d96db71-3d83-442b-8fde-d4ef73b998d1"/>
  816. <field name="user_id" type="bigInteger" unsigned="true" uuid="af9e2aba-ed74-4675-b2a6-b8e5849d4636"/>
  817. <field name="created_by_id" type="bigInteger" unsigned="true" uuid="c5f80f70-abda-43ea-bd96-4342fc0c1135"/>
  818. <field name="numero" type="integer" uuid="814b84d9-8b89-40a5-9e01-cc834ea50b6e"/>
  819. <field name="stato" type="string" uuid="9c2b755c-2f48-40fc-a96d-db71a3ae8b09"/>
  820. <field name="data" type="date" uuid="c4f78038-4cfb-4dd1-bcac-b9d383a4d59b"/>
  821. <field name="data_scadenza" type="date" uuid="6e93d6fb-f64c-41da-84bb-a80a5c2e3746"/>
  822. <field name="periodo_da" type="date" uuid="306e5089-edea-4e61-92ff-9e0775233e9d"/>
  823. <field name="periodo_a" type="date" uuid="56dc7aa8-f831-4d0f-8fef-5164a0913193"/>
  824. <field name="imponibile" type="decimal" size="10" uuid="920496ba-c681-43bf-bd2e-8bc0790e7ef3">
  825. <orm-attributes>
  826. <attribute name="decimal">2</attribute>
  827. </orm-attributes>
  828. </field>
  829. <field name="iva_percentuale" type="decimal" size="10" uuid="5859d5c0-be4b-482d-9f58-21ec4db541c2">
  830. <orm-attributes>
  831. <attribute name="decimal">2</attribute>
  832. </orm-attributes>
  833. </field>
  834. <field name="iva" type="decimal" size="10" uuid="d356d45a-2226-4425-a50b-9b1e4eedfa6e">
  835. <orm-attributes>
  836. <attribute name="decimal">2</attribute>
  837. </orm-attributes>
  838. </field>
  839. <field name="totale" type="decimal" size="10" uuid="9903207b-f0cd-444d-adbf-3611f1ebf4d8">
  840. <orm-attributes>
  841. <attribute name="decimal">2</attribute>
  842. </orm-attributes>
  843. </field>
  844. <field name="note" type="text" uuid="763c3bf5-05b8-438a-94c7-0c4384affaba"/>
  845. <field name="path_file" type="string" uuid="075bf658-058d-424f-b48e-b1e28b1e049e"/>
  846. <field name="ragione_sociale" type="string" uuid="576e02ce-8672-492c-b6ec-01308fea5622"/>
  847. <field name="piva" type="string" uuid="b7cff289-6dd6-456e-85c2-42ca63b1e1e9"/>
  848. <field name="cod_fiscale" type="string" uuid="48f48aab-d7ef-414d-83a0-7ab98f913223"/>
  849. <field name="indirizzo" type="string" uuid="02f2de90-e5ee-4b4a-80a0-8d3cf2dd72a4"/>
  850. <field name="email" type="string" uuid="bde98b8c-6c2d-4841-9df7-887e4b220f88"/>
  851. <field name="telefono" type="string" uuid="3a91a095-aeb7-4b60-9933-f8614d0e3162"/>
  852. <field name="meta" type="json" uuid="48bd7251-8781-4882-8e2a-5f40f28052c6"/>
  853. <field name="comune_id" type="bigInteger" unsigned="true" uuid="a976501c-a52b-4bc6-ba45-f22d7f7ec967"/>
  854. <field name="created_at" type="timestamp" uuid="ee6845fc-c117-4f0a-851e-106fea406367"/>
  855. <field name="updated_at" type="timestamp" uuid="4fa40b85-f8b0-4306-a10e-6da0d8bfeabb"/>
  856. <orm-attributes>
  857. <attribute name="fillableAll">as-fillable-all</attribute>
  858. <attribute name="table">fattura</attribute>
  859. </orm-attributes>
  860. </entity>
  861. <association from="\App\Models\Fattura" to="\App\Models\User" caption="User Fatturas" owner-alias="fatture" inverse-alias="user" many-owner="true" many-inverse="false" uuid="8ca1b7f6-f59c-4a76-8b55-9eaa5729c588">
  862. <association-field from="user_id" to="id" uuid="18643b0d-6874-4337-bf61-c6b57630a5da"/>
  863. <orm-attributes>
  864. <attribute name="onDelete">set null</attribute>
  865. </orm-attributes>
  866. </association>
  867. <association from="\App\Models\Fattura" to="\App\Models\User" caption="User Fatturas" owner-alias="fattureCreate" inverse-alias="createdBy" many-owner="true" many-inverse="false" uuid="a4d4341e-64c7-4fd1-bd5e-b5f457f94e15">
  868. <association-field from="created_by_id" to="id" uuid="2660ac06-894c-4de9-a053-c47f76f5894f"/>
  869. <orm-attributes>
  870. <attribute name="onDelete">set null</attribute>
  871. </orm-attributes>
  872. </association>
  873. <association from="\App\Models\Fattura" to="\App\Models\Comune" caption="Comune Fatturas" owner-alias="fatture" inverse-alias="comune" many-owner="true" many-inverse="false" uuid="d8d39c1e-5b4e-444d-9fde-e86890e12662">
  874. <association-field from="comune_id" to="id" uuid="d954bd57-b5dc-440b-b623-27eda0482e2a"/>
  875. </association>
  876. <entity name="\App\Models\FatturaRiga" local-name="FatturaRiga" namespace="\App\Models" uuid="6cc482e6-604b-4e73-9870-36f4f2711362">
  877. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="c9bbfc3a-fa00-44c2-b098-5904d0b7b3e6"/>
  878. <field name="fattura_id" type="bigInteger" unsigned="true" uuid="b4de60f9-13ec-4965-b461-190be76f143a"/>
  879. <field name="tipo" type="string" uuid="6257b217-17d6-41a3-9487-5c518c2bc02b"/>
  880. <field name="descrizione" type="string" uuid="a148a569-2e9c-4101-b80e-7b4256298e21"/>
  881. <field name="quantita" type="decimal" size="10" uuid="1ccc9c16-7d83-49d4-bfd1-c6b4a1161716">
  882. <orm-attributes>
  883. <attribute name="decimal">2</attribute>
  884. </orm-attributes>
  885. </field>
  886. <field name="unita_misura" type="string" uuid="92db035d-b7a0-4b42-8172-f47554b2610d"/>
  887. <field name="prezzo_unitario" type="decimal" size="10" uuid="69557940-3860-4a2b-8a9b-2462aaab29db">
  888. <orm-attributes>
  889. <attribute name="decimal">2</attribute>
  890. </orm-attributes>
  891. </field>
  892. <field name="sconto" type="decimal" size="10" uuid="91a15e9b-c71e-4931-b219-009b9310a80d">
  893. <orm-attributes>
  894. <attribute name="decimal">2</attribute>
  895. </orm-attributes>
  896. </field>
  897. <field name="iva_percentuale" type="decimal" size="10" uuid="7034c918-097a-4d1e-857c-db466fed11a3">
  898. <orm-attributes>
  899. <attribute name="decimal">2</attribute>
  900. </orm-attributes>
  901. </field>
  902. <field name="importo" type="decimal" size="10" uuid="cccc275f-4a6d-4654-a8c9-8b8c6e59b0ad">
  903. <orm-attributes>
  904. <attribute name="decimal">2</attribute>
  905. </orm-attributes>
  906. </field>
  907. <field name="minuti" type="integer" uuid="270b0887-2c09-454f-a235-e27485cb31fe"/>
  908. <field name="ordine" type="integer" default="0" uuid="30fe1f83-a681-492c-833a-a5112fb39d67"/>
  909. <field name="nota" type="text" uuid="e5d8dcae-ee6d-4ca2-9e6f-6058a137b136"/>
  910. <field name="annotazione_id" type="bigInteger" unsigned="true" uuid="3ea317af-cada-4c7d-a139-d13e70456379"/>
  911. <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="a3c26231-fc66-4f25-94c9-713e5f5eb354"/>
  912. <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="e398b764-2f39-4b67-ad33-540d847a4d34"/>
  913. <field name="contratto_servizio_riga_id" type="bigInteger" unsigned="true" uuid="8f752ece-34ad-4e94-b983-fb7a1d56312f"/>
  914. <field name="ordine_lavoro_id" type="bigInteger" unsigned="true" uuid="754d9613-e7f6-45c4-bf5e-14bcdc0d9157"/>
  915. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="75f07f2c-fe97-4189-a554-789e860950f7"/>
  916. <field name="periodo_da" type="date" uuid="5c8db971-3b05-45f3-aa33-ef251e579c60"/>
  917. <field name="periodo_a" type="date" uuid="2b994a3f-71f2-4647-aad6-5743aea49845"/>
  918. <field name="created_at" type="timestamp" uuid="d2d85cb5-2cdc-454f-ade7-aa8e38744b37"/>
  919. <field name="updated_at" type="timestamp" uuid="d591d678-dfea-4105-9e84-6a6786f31125"/>
  920. <orm-attributes>
  921. <attribute name="fillableAll">as-fillable-all</attribute>
  922. <attribute name="table">fattura_riga</attribute>
  923. </orm-attributes>
  924. </entity>
  925. <association from="\App\Models\FatturaRiga" to="\App\Models\Fattura" caption="Fattura FatturaRigas" owner-alias="righe" inverse-alias="fattura" many-owner="true" many-inverse="false" uuid="d69021ca-1036-4659-b1bb-431dd895db02">
  926. <association-field from="fattura_id" to="id" uuid="2099a305-fbd4-4076-a85c-d0d3c96d0a5e"/>
  927. <orm-attributes>
  928. <attribute name="onDelete">cascade</attribute>
  929. </orm-attributes>
  930. </association>
  931. <association from="\App\Models\FatturaRiga" to="\App\Models\Annotazione" caption="Annotazione FatturaRigas" owner-alias="fatturaRighe" inverse-alias="annotazione" many-owner="true" many-inverse="false" uuid="423b7b2d-3041-412c-8078-3720e48429d8">
  932. <association-field from="annotazione_id" to="id" uuid="2f341028-7afe-4bc0-b028-34052ac55978"/>
  933. <orm-attributes>
  934. <attribute name="onDelete">set null</attribute>
  935. </orm-attributes>
  936. </association>
  937. <association from="\App\Models\FatturaRiga" to="\App\Models\Segnalazione" caption="Segnalazione FatturaRigas" owner-alias="fatturaRighe" inverse-alias="segnalazione" many-owner="true" many-inverse="false" uuid="9a930ef5-48ae-4eba-97eb-840f54c682f1">
  938. <association-field from="segnalazione_id" to="id" uuid="fb426b82-ed78-4ad1-89ba-a48a66e19ec2"/>
  939. <orm-attributes>
  940. <attribute name="onDelete">set null</attribute>
  941. </orm-attributes>
  942. </association>
  943. <association from="\App\Models\FatturaRiga" to="\App\Models\ContrattoServizio" caption="ContrattoServizio FatturaRigas" owner-alias="fatturaRighe" inverse-alias="contrattoServizio" many-owner="true" many-inverse="false" uuid="d34a3b7a-91da-44d1-84d9-fa049248c00d">
  944. <association-field from="contratto_servizio_id" to="id" uuid="9809bfc1-664d-487e-a8b7-54419a018ab7"/>
  945. <orm-attributes>
  946. <attribute name="onDelete">set null</attribute>
  947. </orm-attributes>
  948. </association>
  949. <association from="\App\Models\FatturaRiga" to="\App\Models\ContrattoServizioRiga" caption="ContrattoServizioRiga FatturaRigas" owner-alias="fatturaRighe" inverse-alias="contrattoServizioRiga" many-owner="true" many-inverse="false" uuid="f5fadc49-42d4-4c62-a53e-a293806c8783">
  950. <association-field from="contratto_servizio_riga_id" to="id" uuid="4d151ce4-d485-4b6e-b558-e6779a406b22"/>
  951. <orm-attributes>
  952. <attribute name="onDelete">set null</attribute>
  953. </orm-attributes>
  954. </association>
  955. <association from="\App\Models\FatturaRiga" to="\App\Models\OrdineLavoro" caption="OrdineLavoro FatturaRigas" owner-alias="fatturaRighe" inverse-alias="ordineLavoro" many-owner="true" many-inverse="false" uuid="6f844493-1bb4-40a9-bd78-97e979015333">
  956. <association-field from="ordine_lavoro_id" to="id" uuid="80800d7e-bdd2-4c2a-b4d7-b6d92a5ca8bf"/>
  957. <orm-attributes>
  958. <attribute name="onDelete">set null</attribute>
  959. </orm-attributes>
  960. </association>
  961. <association from="\App\Models\FatturaRiga" to="\App\Models\Prodotto" caption="Prodotto FatturaRigas" owner-alias="fatturaRighe" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="72ab57bf-7877-458a-9891-90399ec44941">
  962. <association-field from="prodotto_id" to="id" uuid="1161edb2-e88f-4df3-a370-160def07904b"/>
  963. <orm-attributes>
  964. <attribute name="onDelete">set null</attribute>
  965. </orm-attributes>
  966. </association>
  967. <entity name="\App\Models\SegnalazioneSlot" local-name="SegnalazioneSlot" namespace="\App\Models" uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c">
  968. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="72d22456-ccc5-4806-9743-b91635948ea7"/>
  969. <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="e1a2b3f2-59be-4c31-ba82-d1e413cf5cc9"/>
  970. <field name="starts_at" type="dateTime" uuid="25084066-cd50-4459-8b21-dacdb3a988aa"/>
  971. <field name="ends_at" type="dateTime" uuid="310f5a51-80c7-444c-a53d-2b8c9ac5401d"/>
  972. <field name="created_at" type="timestamp" uuid="db734a85-a27a-4254-ae8c-63d472df57a7"/>
  973. <field name="updated_at" type="timestamp" uuid="f3fe4780-00f5-4a30-86a3-ff7fd643d629"/>
  974. <orm-attributes>
  975. <attribute name="fillableAll">as-fillable-all</attribute>
  976. <attribute name="table">segnalazione_slot</attribute>
  977. </orm-attributes>
  978. </entity>
  979. <association from="\App\Models\SegnalazioneSlot" to="\App\Models\Segnalazione" caption="Segnalazione SegnalazioneSlots" owner-alias="slots" inverse-alias="segnalazione" many-owner="true" many-inverse="false" uuid="66d48b8b-7984-430a-92e7-fbe21fce135f">
  980. <association-field from="segnalazione_id" to="id" uuid="c75ea229-0d18-4d5e-8c5a-cb7cc0c8dff6"/>
  981. <orm-attributes>
  982. <attribute name="onDelete">cascade</attribute>
  983. </orm-attributes>
  984. </association>
  985. <entity name="\App\Models\OrdineLavoroRiga" local-name="OrdineLavoroRiga" namespace="\App\Models" uuid="04287ee6-13fe-4b73-970a-aedefd569698">
  986. <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="7ed8a1d0-2b4d-418b-b371-60d8ab5c6361"/>
  987. <field name="ordine_lavoro_id" type="bigInteger" unsigned="true" uuid="bd447a10-6098-49fa-b342-38bfc6c0271d"/>
  988. <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="05297563-07a0-4cbb-876d-cf811973af8b"/>
  989. <field name="descrizione" type="string" uuid="dddc3ab2-3d27-4954-abb0-7add4bd39045"/>
  990. <field name="quantita" type="decimal" size="10" uuid="6df25b5a-0b5b-4b75-9f1f-de5b1b33fc81">
  991. <orm-attributes>
  992. <attribute name="decimal">2</attribute>
  993. </orm-attributes>
  994. </field>
  995. <field name="unita_misura" type="string" uuid="4d89aa02-bd75-470c-95b2-6ed1086fecbb"/>
  996. <field name="prezzo_unitario" type="decimal" size="10" uuid="9d4792f1-0b30-48f8-ac62-4be597728e15">
  997. <orm-attributes>
  998. <attribute name="decimal">2</attribute>
  999. </orm-attributes>
  1000. </field>
  1001. <field name="sconto" type="decimal" size="10" uuid="b1bec05e-c03e-4cd5-abb2-56a077292f3a">
  1002. <orm-attributes>
  1003. <attribute name="decimal">2</attribute>
  1004. </orm-attributes>
  1005. </field>
  1006. <field name="ordine" type="integer" default="0" uuid="1411b9dc-1fce-4a6d-a961-0e631ebf42da"/>
  1007. <field name="note_private" type="text" uuid="2c203621-a3dc-4adf-97e9-387293ec5d2f"/>
  1008. <field name="tempo_stimato" type="decimal" size="10" uuid="6cc655ed-c6b9-45a6-b078-1dbae13e93c6">
  1009. <orm-attributes>
  1010. <attribute name="decimal">2</attribute>
  1011. </orm-attributes>
  1012. </field>
  1013. <field name="created_at" type="timestamp" uuid="15b7da2d-8558-47b6-bbf2-88556147d03d"/>
  1014. <field name="updated_at" type="timestamp" uuid="fea3f591-b802-401b-b494-0648197ec020"/>
  1015. <orm-attributes>
  1016. <attribute name="fillableAll">as-fillable-all</attribute>
  1017. <attribute name="table">ordine_lavoro_riga</attribute>
  1018. </orm-attributes>
  1019. </entity>
  1020. <association from="\App\Models\OrdineLavoroRiga" to="\App\Models\OrdineLavoro" caption="OrdineLavoro OrdineLavoroRigas" owner-alias="righe" inverse-alias="ordineLavoro" many-owner="true" many-inverse="false" uuid="1e8af9f9-8d2e-4c16-8530-28e43a622c6d">
  1021. <association-field from="ordine_lavoro_id" to="id" uuid="bf0d5c13-4e24-4438-8e1f-dcc24809cbc6"/>
  1022. <orm-attributes>
  1023. <attribute name="onDelete">cascade</attribute>
  1024. </orm-attributes>
  1025. </association>
  1026. <association from="\App\Models\OrdineLavoroRiga" to="\App\Models\Prodotto" caption="Prodotto OrdineLavoroRigas" owner-alias="ordineLavoroRigas" inverse-alias="prodotto" many-owner="true" many-inverse="false" uuid="350c8c4f-877e-4925-8385-b750d5f625da">
  1027. <association-field from="prodotto_id" to="id" uuid="6b67c71b-1af2-4f55-9a45-b7bdfe642ad9"/>
  1028. <orm-attributes>
  1029. <attribute name="onDelete">set null</attribute>
  1030. </orm-attributes>
  1031. </association>
  1032. <migrations version="1.0">
  1033. <revision uuid="140bda96-ff98-4f0d-894d-165e556494e9" date="2026-08-09 01:24:26.374386" exportable="true">
  1034. <element action="add" uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="module">
  1035. <property name="export-format" value="Laravel"/>
  1036. <property name="export-path" value="."/>
  1037. <property name="local-name" value="Application module"/>
  1038. <property name="local-namespace" value="App\Models"/>
  1039. <property name="name" value="\Application module"/>
  1040. <property name="namespace" value="\App\Models"/>
  1041. </element>
  1042. <element action="add" uuid="56185713-1439-4bd9-81df-6d5339d066ce" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1043. <property name="extends" value="\Illuminate\Foundation\Auth\User"/>
  1044. <property name="fillableAll" value="as-fillable-all"/>
  1045. <property name="local-name" value="User"/>
  1046. <property name="name" value="\App\Models\User"/>
  1047. <property name="namespace" value="\App\Models"/>
  1048. <property name="table" value="users"/>
  1049. </element>
  1050. <element action="add" uuid="b21d156e-828b-49fe-87a8-659eb8411896" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1051. <property name="fillableAll" value="as-fillable-all"/>
  1052. <property name="local-name" value="Segnalazione"/>
  1053. <property name="name" value="\App\Models\Segnalazione"/>
  1054. <property name="namespace" value="\App\Models"/>
  1055. <property name="table" value="segnalazione"/>
  1056. </element>
  1057. <element action="add" uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1058. <property name="fillableAll" value="as-fillable-all"/>
  1059. <property name="local-name" value="ConfiguraSegnalazione"/>
  1060. <property name="name" value="\App\Models\ConfiguraSegnalazione"/>
  1061. <property name="namespace" value="\App\Models"/>
  1062. <property name="table" value="configura_segnalazione"/>
  1063. </element>
  1064. <element action="add" uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1065. <property name="fillableAll" value="as-fillable-all"/>
  1066. <property name="local-name" value="Annotazione"/>
  1067. <property name="name" value="\App\Models\Annotazione"/>
  1068. <property name="namespace" value="\App\Models"/>
  1069. <property name="table" value="annotazione"/>
  1070. </element>
  1071. <element action="add" uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1072. <property name="fillableAll" value="as-fillable-all"/>
  1073. <property name="local-name" value="AllegatoAnnotazione"/>
  1074. <property name="name" value="\App\Models\AllegatoAnnotazione"/>
  1075. <property name="namespace" value="\App\Models"/>
  1076. <property name="table" value="allegato_annotazione"/>
  1077. </element>
  1078. <element action="add" uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1079. <property name="fillableAll" value="as-fillable-all"/>
  1080. <property name="local-name" value="Provincia"/>
  1081. <property name="name" value="\App\Models\Provincia"/>
  1082. <property name="namespace" value="\App\Models"/>
  1083. <property name="table" value="provincia"/>
  1084. </element>
  1085. <element action="add" uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1086. <property name="fillableAll" value="as-fillable-all"/>
  1087. <property name="local-name" value="Nazione"/>
  1088. <property name="name" value="\App\Models\Nazione"/>
  1089. <property name="namespace" value="\App\Models"/>
  1090. <property name="table" value="nazione"/>
  1091. </element>
  1092. <element action="add" uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1093. <property name="fillableAll" value="as-fillable-all"/>
  1094. <property name="local-name" value="Comune"/>
  1095. <property name="name" value="\App\Models\Comune"/>
  1096. <property name="namespace" value="\App\Models"/>
  1097. <property name="table" value="comune"/>
  1098. </element>
  1099. <element action="add" uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1100. <property name="fillableAll" value="as-fillable-all"/>
  1101. <property name="local-name" value="Config"/>
  1102. <property name="name" value="\App\Models\Config"/>
  1103. <property name="namespace" value="\App\Models"/>
  1104. <property name="table" value="config"/>
  1105. </element>
  1106. <element action="add" uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1107. <property name="fillableAll" value="as-fillable-all"/>
  1108. <property name="local-name" value="ConfigNotifiche"/>
  1109. <property name="name" value="\App\Models\ConfigNotifiche"/>
  1110. <property name="namespace" value="\App\Models"/>
  1111. <property name="table" value="config_notifiche"/>
  1112. </element>
  1113. <element action="add" uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1114. <property name="fillableAll" value="as-fillable-all"/>
  1115. <property name="local-name" value="Prodotto"/>
  1116. <property name="name" value="\App\Models\Prodotto"/>
  1117. <property name="namespace" value="\App\Models"/>
  1118. <property name="table" value="prodotto"/>
  1119. </element>
  1120. <element action="add" uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1121. <property name="fillableAll" value="as-fillable-all"/>
  1122. <property name="local-name" value="ContrattoServizio"/>
  1123. <property name="name" value="\App\Models\ContrattoServizio"/>
  1124. <property name="namespace" value="\App\Models"/>
  1125. <property name="table" value="contratto_servizio"/>
  1126. </element>
  1127. <element action="add" uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1128. <property name="fillableAll" value="as-fillable-all"/>
  1129. <property name="local-name" value="Offerta"/>
  1130. <property name="name" value="\App\Models\Offerta"/>
  1131. <property name="namespace" value="\App\Models"/>
  1132. <property name="table" value="offerta"/>
  1133. </element>
  1134. <element action="add" uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1135. <property name="fillableAll" value="as-fillable-all"/>
  1136. <property name="local-name" value="OffertaRiga"/>
  1137. <property name="name" value="\App\Models\OffertaRiga"/>
  1138. <property name="namespace" value="\App\Models"/>
  1139. <property name="table" value="offerta_riga"/>
  1140. </element>
  1141. <element action="add" uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1142. <property name="fillableAll" value="as-fillable-all"/>
  1143. <property name="local-name" value="OrdineLavoro"/>
  1144. <property name="name" value="\App\Models\OrdineLavoro"/>
  1145. <property name="namespace" value="\App\Models"/>
  1146. <property name="table" value="ordine_lavoro"/>
  1147. </element>
  1148. <element action="add" uuid="98806966-1270-452c-b1ab-cdae6e0016b6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1149. <property name="local-name" value="OrdineLavoroHasOfferta"/>
  1150. <property name="name" value="\App\Models\OrdineLavoroHasOfferta"/>
  1151. <property name="namespace" value="\App\Models"/>
  1152. </element>
  1153. <element action="add" uuid="735de4a0-df7b-48d1-a686-8b7b88229151" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1154. <property name="fillableAll" value="as-fillable-all"/>
  1155. <property name="local-name" value="ContrattoTemplate"/>
  1156. <property name="name" value="\App\Models\ContrattoTemplate"/>
  1157. <property name="namespace" value="\App\Models"/>
  1158. <property name="table" value="contratto_template"/>
  1159. </element>
  1160. <element action="add" uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1161. <property name="fillableAll" value="as-fillable-all"/>
  1162. <property name="local-name" value="ContrattoTemplateTodo"/>
  1163. <property name="name" value="\App\Models\ContrattoTemplateTodo"/>
  1164. <property name="namespace" value="\App\Models"/>
  1165. <property name="table" value="contratto_template_todo"/>
  1166. </element>
  1167. <element action="add" uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1168. <property name="fillableAll" value="as-fillable-all"/>
  1169. <property name="local-name" value="ContrattoServizioTodo"/>
  1170. <property name="name" value="\App\Models\ContrattoServizioTodo"/>
  1171. <property name="namespace" value="\App\Models"/>
  1172. <property name="table" value="contratto_servizio_todo"/>
  1173. </element>
  1174. <element action="add" uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1175. <property name="fillableAll" value="as-fillable-all"/>
  1176. <property name="local-name" value="ContrattoTemplateRiga"/>
  1177. <property name="name" value="\App\Models\ContrattoTemplateRiga"/>
  1178. <property name="namespace" value="\App\Models"/>
  1179. <property name="table" value="contratto_template_riga"/>
  1180. </element>
  1181. <element action="add" uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1182. <property name="fillableAll" value="as-fillable-all"/>
  1183. <property name="local-name" value="ContrattoServizioRiga"/>
  1184. <property name="name" value="\App\Models\ContrattoServizioRiga"/>
  1185. <property name="namespace" value="\App\Models"/>
  1186. <property name="table" value="contratto_servizio_riga"/>
  1187. </element>
  1188. <element action="add" uuid="c0890191-d438-495f-819a-1a045d21a357" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1189. <property name="fillableAll" value="as-fillable-all"/>
  1190. <property name="local-name" value="PromoCode"/>
  1191. <property name="name" value="\App\Models\PromoCode"/>
  1192. <property name="namespace" value="\App\Models"/>
  1193. <property name="table" value="promo_code"/>
  1194. </element>
  1195. <element action="add" uuid="273deed0-9f6e-4aca-b64b-22a657db2a21" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1196. <property name="local-name" value="PromoCodeHasProdotto"/>
  1197. <property name="name" value="\App\Models\PromoCodeHasProdotto"/>
  1198. <property name="namespace" value="\App\Models"/>
  1199. </element>
  1200. <element action="add" uuid="c9dad18d-0272-4878-8404-fd0db896b447" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1201. <property name="fillableAll" value="as-fillable-all"/>
  1202. <property name="local-name" value="AcquistoServizio"/>
  1203. <property name="name" value="\App\Models\AcquistoServizio"/>
  1204. <property name="namespace" value="\App\Models"/>
  1205. <property name="table" value="acquisto_servizio"/>
  1206. </element>
  1207. <element action="add" uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1208. <property name="fillableAll" value="as-fillable-all"/>
  1209. <property name="local-name" value="ProdottoTodo"/>
  1210. <property name="name" value="\App\Models\ProdottoTodo"/>
  1211. <property name="namespace" value="\App\Models"/>
  1212. <property name="table" value="prodotto_todo"/>
  1213. </element>
  1214. <element action="add" uuid="05f7d8b0-095f-456c-96ec-3980b0435855" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  1215. <property name="fillableAll" value="as-fillable-all"/>
  1216. <property name="local-name" value="SegnalazioneTodo"/>
  1217. <property name="name" value="\App\Models\SegnalazioneTodo"/>
  1218. <property name="namespace" value="\App\Models"/>
  1219. <property name="table" value="segnalazione_todo"/>
  1220. </element>
  1221. <element action="add" uuid="0a6f5cb1-6847-45b2-9241-8ab815e1c380" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" type="field">
  1222. <property name="auto-increment" value="true"/>
  1223. <property name="name" value="id"/>
  1224. <property name="primary" value="true"/>
  1225. <property name="required" value="true"/>
  1226. <property name="type" value="bigInteger"/>
  1227. <property name="unique" value="true"/>
  1228. <property name="unsigned" value="true"/>
  1229. </element>
  1230. <element action="add" uuid="7146ddab-7bf0-4c4a-9cb9-0a80eedba7fd" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="0a6f5cb1-6847-45b2-9241-8ab815e1c380" type="field">
  1231. <property name="name" value="nome"/>
  1232. <property name="type" value="string"/>
  1233. </element>
  1234. <element action="add" uuid="5d3e9adc-9d0e-4b7c-abef-2b50ec57333c" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="7146ddab-7bf0-4c4a-9cb9-0a80eedba7fd" type="field">
  1235. <property name="name" value="cognome"/>
  1236. <property name="type" value="string"/>
  1237. </element>
  1238. <element action="add" uuid="097ab2c7-9646-43ff-bc82-8cc0c277d909" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="5d3e9adc-9d0e-4b7c-abef-2b50ec57333c" type="field">
  1239. <property name="name" value="email"/>
  1240. <property name="type" value="string"/>
  1241. </element>
  1242. <element action="add" uuid="2cb16ee6-fd81-4981-95be-d88191274a0d" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="097ab2c7-9646-43ff-bc82-8cc0c277d909" type="field">
  1243. <property name="name" value="telefono"/>
  1244. <property name="type" value="string"/>
  1245. </element>
  1246. <element action="add" uuid="ca5b3607-4149-4aa9-9fe9-ed3f9ea4b79b" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="2cb16ee6-fd81-4981-95be-d88191274a0d" type="field">
  1247. <property name="name" value="password"/>
  1248. <property name="type" value="string"/>
  1249. </element>
  1250. <element action="add" uuid="a71fea94-0e25-4722-a9f4-a764b739a498" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="ca5b3607-4149-4aa9-9fe9-ed3f9ea4b79b" type="field">
  1251. <property name="name" value="azienda_id"/>
  1252. <property name="type" value="bigInteger"/>
  1253. <property name="unsigned" value="true"/>
  1254. </element>
  1255. <element action="add" uuid="e9cfc935-4b99-4bc8-be16-c582001b7cf4" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="a71fea94-0e25-4722-a9f4-a764b739a498" type="field">
  1256. <property name="name" value="email_verified_at"/>
  1257. <property name="type" value="timestamp"/>
  1258. </element>
  1259. <element action="add" uuid="43a000b7-9f98-4fbd-a88d-c6ea908cb2cc" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="e9cfc935-4b99-4bc8-be16-c582001b7cf4" type="field">
  1260. <property name="name" value="remember_token"/>
  1261. <property name="type" value="string"/>
  1262. </element>
  1263. <element action="add" uuid="e1c61394-f57e-4941-aeb7-04fb368733cd" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="43a000b7-9f98-4fbd-a88d-c6ea908cb2cc" type="field">
  1264. <property name="name" value="api_token"/>
  1265. <property name="type" value="string"/>
  1266. </element>
  1267. <element action="add" uuid="9f263de8-d827-4458-abac-08dc31740853" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="e1c61394-f57e-4941-aeb7-04fb368733cd" type="field">
  1268. <property name="name" value="two_factor_secret"/>
  1269. <property name="type" value="text"/>
  1270. </element>
  1271. <element action="add" uuid="07ddc14d-0638-4998-9c0f-61e6b4c275ef" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="9f263de8-d827-4458-abac-08dc31740853" type="field">
  1272. <property name="name" value="two_factor_recovery_codes"/>
  1273. <property name="type" value="text"/>
  1274. </element>
  1275. <element action="add" uuid="7e1530aa-7374-4465-af8d-0aed05196cf6" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="07ddc14d-0638-4998-9c0f-61e6b4c275ef" type="field">
  1276. <property name="name" value="two_factor_confirmed_at"/>
  1277. <property name="type" value="timestamp"/>
  1278. </element>
  1279. <element action="add" uuid="704eb3e5-b120-4303-b675-f3b7e051b24d" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="7e1530aa-7374-4465-af8d-0aed05196cf6" type="field">
  1280. <property name="default" value="0"/>
  1281. <property name="name" value="is_gruppo"/>
  1282. <property name="type" value="boolean"/>
  1283. </element>
  1284. <element action="add" uuid="2e3ab400-2d56-48bd-b868-74e5494168cd" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="704eb3e5-b120-4303-b675-f3b7e051b24d" type="field">
  1285. <property name="default" value="0"/>
  1286. <property name="name" value="is_azienda"/>
  1287. <property name="type" value="boolean"/>
  1288. </element>
  1289. <element action="add" uuid="b575155d-c744-4622-92bb-d28a36710267" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="2e3ab400-2d56-48bd-b868-74e5494168cd" type="field">
  1290. <property name="name" value="label_gruppo"/>
  1291. <property name="type" value="string"/>
  1292. </element>
  1293. <element action="add" uuid="c26ef028-e3f3-4dfe-b949-397da060e974" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="b575155d-c744-4622-92bb-d28a36710267" type="field">
  1294. <property name="name" value="componenti_gruppo"/>
  1295. <property name="type" value="json"/>
  1296. </element>
  1297. <element action="add" uuid="ab3e9eee-6cc3-4b04-923d-c9eaeb067f3a" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="c26ef028-e3f3-4dfe-b949-397da060e974" type="field">
  1298. <property name="name" value="ragione_sociale"/>
  1299. <property name="type" value="string"/>
  1300. </element>
  1301. <element action="add" uuid="24b53519-f7ed-4605-97ed-0fe8007aec6d" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="ab3e9eee-6cc3-4b04-923d-c9eaeb067f3a" type="field">
  1302. <property name="name" value="piva"/>
  1303. <property name="type" value="string"/>
  1304. </element>
  1305. <element action="add" uuid="54f8f89b-8f1d-4350-b6be-f3d442bd097b" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="24b53519-f7ed-4605-97ed-0fe8007aec6d" type="field">
  1306. <property name="name" value="cod_fiscale"/>
  1307. <property name="type" value="string"/>
  1308. </element>
  1309. <element action="add" uuid="a904fce5-68f9-49c5-9c4b-32cedf9bb6bb" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="54f8f89b-8f1d-4350-b6be-f3d442bd097b" type="field">
  1310. <property name="name" value="indirizzo"/>
  1311. <property name="type" value="string"/>
  1312. </element>
  1313. <element action="add" uuid="75bbae31-8850-4bd7-ad84-264a0a9ef52d" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="a904fce5-68f9-49c5-9c4b-32cedf9bb6bb" type="field">
  1314. <property name="name" value="note"/>
  1315. <property name="type" value="text"/>
  1316. </element>
  1317. <element action="add" uuid="519bbe2d-e5b8-49c0-b964-08644a0c119f" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="75bbae31-8850-4bd7-ad84-264a0a9ef52d" type="field">
  1318. <property name="name" value="comune_id"/>
  1319. <property name="type" value="bigInteger"/>
  1320. <property name="unsigned" value="true"/>
  1321. </element>
  1322. <element action="add" uuid="40919a29-47f6-4516-9c3d-917ed2c9afe6" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="519bbe2d-e5b8-49c0-b964-08644a0c119f" type="field">
  1323. <property name="name" value="created_at"/>
  1324. <property name="type" value="timestamp"/>
  1325. </element>
  1326. <element action="add" uuid="ef88ffd6-4374-4238-99c9-9cc9596a093e" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="40919a29-47f6-4516-9c3d-917ed2c9afe6" type="field">
  1327. <property name="name" value="updated_at"/>
  1328. <property name="type" value="timestamp"/>
  1329. </element>
  1330. <element action="add" uuid="d15505d1-a284-4cf1-94b0-70d0f5788243" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" type="field">
  1331. <property name="auto-increment" value="true"/>
  1332. <property name="name" value="id"/>
  1333. <property name="primary" value="true"/>
  1334. <property name="required" value="true"/>
  1335. <property name="type" value="bigInteger"/>
  1336. <property name="unique" value="true"/>
  1337. <property name="unsigned" value="true"/>
  1338. </element>
  1339. <element action="add" uuid="ecd5a597-63db-4120-8e3f-0c4b6fff198d" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="d15505d1-a284-4cf1-94b0-70d0f5788243" type="field">
  1340. <property name="description" value="chi ha fatto la segnalazione"/>
  1341. <property name="name" value="user_id"/>
  1342. <property name="type" value="bigInteger"/>
  1343. <property name="unsigned" value="true"/>
  1344. </element>
  1345. <element action="add" uuid="9157dc7c-305b-4227-8b05-3992650c5cfc" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="ecd5a597-63db-4120-8e3f-0c4b6fff198d" type="field">
  1346. <property name="description" value="a chi &#xE8; assegnata la segnalazione"/>
  1347. <property name="name" value="assegnata_a_id"/>
  1348. <property name="type" value="bigInteger"/>
  1349. <property name="unsigned" value="true"/>
  1350. </element>
  1351. <element action="add" uuid="76454f4a-a34f-43c3-9ae6-e6cbaedcf788" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="9157dc7c-305b-4227-8b05-3992650c5cfc" type="field">
  1352. <property name="name" value="azienda_id"/>
  1353. <property name="type" value="bigInteger"/>
  1354. <property name="unsigned" value="true"/>
  1355. </element>
  1356. <element action="add" uuid="b214ffbc-1d19-4585-8ba6-40f9481d9267" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="76454f4a-a34f-43c3-9ae6-e6cbaedcf788" type="field">
  1357. <property name="name" value="contratto_servizio_id"/>
  1358. <property name="type" value="bigInteger"/>
  1359. <property name="unsigned" value="true"/>
  1360. </element>
  1361. <element action="add" uuid="e483a339-f493-4b94-8f93-a2b661231ee5" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="b214ffbc-1d19-4585-8ba6-40f9481d9267" type="field">
  1362. <property name="name" value="contratto_servizio_todo_id"/>
  1363. <property name="type" value="bigInteger"/>
  1364. <property name="unsigned" value="true"/>
  1365. </element>
  1366. <element action="add" uuid="3cef7379-2ba5-4b50-9da8-6afcf2c66341" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="e483a339-f493-4b94-8f93-a2b661231ee5" type="field">
  1367. <property name="name" value="ordine_lavoro_id"/>
  1368. <property name="type" value="bigInteger"/>
  1369. <property name="unsigned" value="true"/>
  1370. </element>
  1371. <element action="add" uuid="22a1f5dd-b956-4ee7-bf73-062e66d3a5b0" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="3cef7379-2ba5-4b50-9da8-6afcf2c66341" type="field">
  1372. <property name="name" value="acquisto_servizio_id"/>
  1373. <property name="type" value="bigInteger"/>
  1374. <property name="unsigned" value="true"/>
  1375. </element>
  1376. <element action="add" uuid="7158b094-0bec-4edb-914e-2457f0424463" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="22a1f5dd-b956-4ee7-bf73-062e66d3a5b0" type="field">
  1377. <property name="name" value="prodotto_id"/>
  1378. <property name="type" value="bigInteger"/>
  1379. <property name="unsigned" value="true"/>
  1380. </element>
  1381. <element action="add" uuid="992bbdcc-c8a3-49a9-a95d-c28287148b38" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="7158b094-0bec-4edb-914e-2457f0424463" type="field">
  1382. <property name="name" value="numero"/>
  1383. <property name="type" value="integer"/>
  1384. </element>
  1385. <element action="add" uuid="93e92649-f52f-4db5-baad-a4abf8e20f62" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="992bbdcc-c8a3-49a9-a95d-c28287148b38" type="field">
  1386. <property name="name" value="titolo"/>
  1387. <property name="type" value="string"/>
  1388. </element>
  1389. <element action="add" uuid="86938116-9b87-4051-bc45-3009fe9cbf83" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="93e92649-f52f-4db5-baad-a4abf8e20f62" type="field">
  1390. <property name="name" value="stato"/>
  1391. <property name="type" value="string"/>
  1392. </element>
  1393. <element action="add" uuid="47ea6f64-0734-42ae-9374-bfe268ac2fca" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="86938116-9b87-4051-bc45-3009fe9cbf83" type="field">
  1394. <property name="name" value="priorita"/>
  1395. <property name="type" value="string"/>
  1396. </element>
  1397. <element action="add" uuid="16f71b45-d45e-490a-9985-f19bed3c4d1c" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="47ea6f64-0734-42ae-9374-bfe268ac2fca" type="field">
  1398. <property name="name" value="tipo"/>
  1399. <property name="type" value="string"/>
  1400. </element>
  1401. <element action="add" uuid="e5bd4274-35d3-4bff-9643-31c0b84ef421" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="16f71b45-d45e-490a-9985-f19bed3c4d1c" type="field">
  1402. <property name="name" value="token"/>
  1403. <property name="type" value="string"/>
  1404. </element>
  1405. <element action="add" uuid="feb6065e-dfd6-47d6-a5bb-1d54c5d99050" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="e5bd4274-35d3-4bff-9643-31c0b84ef421" type="field">
  1406. <property name="name" value="meta"/>
  1407. <property name="type" value="json"/>
  1408. </element>
  1409. <element action="add" uuid="330da781-7ebb-4a50-b6fd-b626f954735f" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="feb6065e-dfd6-47d6-a5bb-1d54c5d99050" type="field">
  1410. <property name="name" value="origine"/>
  1411. <property name="type" value="string"/>
  1412. </element>
  1413. <element action="add" uuid="91880b18-1a17-4b31-85e5-61ae81e6aba2" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="330da781-7ebb-4a50-b6fd-b626f954735f" type="field">
  1414. <property name="decimal" value="2"/>
  1415. <property name="name" value="tempo_stimato"/>
  1416. <property name="size" value="10"/>
  1417. <property name="type" value="decimal"/>
  1418. </element>
  1419. <element action="add" uuid="d0040cc6-db11-4587-beed-bf4313681d57" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="91880b18-1a17-4b31-85e5-61ae81e6aba2" type="field">
  1420. <property name="name" value="created_at"/>
  1421. <property name="type" value="timestamp"/>
  1422. </element>
  1423. <element action="add" uuid="3a3d74a0-b87a-40b2-aa1d-691d9ff66856" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" sibling-uuid="d0040cc6-db11-4587-beed-bf4313681d57" type="field">
  1424. <property name="name" value="updated_at"/>
  1425. <property name="type" value="timestamp"/>
  1426. </element>
  1427. <element action="add" uuid="b82082e0-0b90-471d-9698-545b58e84b5a" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" type="field">
  1428. <property name="auto-increment" value="true"/>
  1429. <property name="name" value="id"/>
  1430. <property name="primary" value="true"/>
  1431. <property name="required" value="true"/>
  1432. <property name="type" value="bigInteger"/>
  1433. <property name="unique" value="true"/>
  1434. <property name="unsigned" value="true"/>
  1435. </element>
  1436. <element action="add" uuid="c0b1bbac-3561-4290-8d26-0f80e005ddf9" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="b82082e0-0b90-471d-9698-545b58e84b5a" type="field">
  1437. <property name="name" value="label"/>
  1438. <property name="type" value="string"/>
  1439. </element>
  1440. <element action="add" uuid="27bba23a-4ee0-47bf-bb70-b7029dbacd8a" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="c0b1bbac-3561-4290-8d26-0f80e005ddf9" type="field">
  1441. <property name="name" value="descrizione"/>
  1442. <property name="type" value="text"/>
  1443. </element>
  1444. <element action="add" uuid="59cd917a-97b3-4227-badc-ee7604c971f7" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="27bba23a-4ee0-47bf-bb70-b7029dbacd8a" type="field">
  1445. <property name="name" value="gruppo"/>
  1446. <property name="type" value="string"/>
  1447. </element>
  1448. <element action="add" uuid="436d6a3f-fc22-4fe5-a91f-e2c393ed7780" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="59cd917a-97b3-4227-badc-ee7604c971f7" type="field">
  1449. <property name="name" value="key"/>
  1450. <property name="type" value="string"/>
  1451. </element>
  1452. <element action="add" uuid="6122590b-dc17-4bf2-8497-c5b17bacaacd" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="436d6a3f-fc22-4fe5-a91f-e2c393ed7780" type="field">
  1453. <property name="name" value="value"/>
  1454. <property name="type" value="string"/>
  1455. </element>
  1456. <element action="add" uuid="b7ab3e5d-4482-483b-8cea-a26de1feda03" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="6122590b-dc17-4bf2-8497-c5b17bacaacd" type="field">
  1457. <property name="name" value="type"/>
  1458. <property name="type" value="string"/>
  1459. </element>
  1460. <element action="add" uuid="e4996d7f-4473-478d-8fea-5936deb136bd" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="b7ab3e5d-4482-483b-8cea-a26de1feda03" type="field">
  1461. <property name="name" value="order"/>
  1462. <property name="type" value="integer"/>
  1463. </element>
  1464. <element action="add" uuid="b9635a0a-85b2-467a-b2dc-89cd63ee0c4d" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="e4996d7f-4473-478d-8fea-5936deb136bd" type="field">
  1465. <property name="name" value="icona"/>
  1466. <property name="type" value="string"/>
  1467. </element>
  1468. <element action="add" uuid="c6811c53-5d36-454d-b43f-5df0157e39c2" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="b9635a0a-85b2-467a-b2dc-89cd63ee0c4d" type="field">
  1469. <property name="name" value="colore"/>
  1470. <property name="type" value="string"/>
  1471. </element>
  1472. <element action="add" uuid="1038885e-eca5-4f75-a412-81059913bfe5" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="c6811c53-5d36-454d-b43f-5df0157e39c2" type="field">
  1473. <property name="name" value="opzioni"/>
  1474. <property name="type" value="json"/>
  1475. </element>
  1476. <element action="add" uuid="00cd7459-b3a0-482c-83a4-7568de2c7124" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="1038885e-eca5-4f75-a412-81059913bfe5" type="field">
  1477. <property name="name" value="created_at"/>
  1478. <property name="type" value="timestamp"/>
  1479. </element>
  1480. <element action="add" uuid="93b12b98-06a8-4563-9e4d-553b532d39db" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" sibling-uuid="00cd7459-b3a0-482c-83a4-7568de2c7124" type="field">
  1481. <property name="name" value="updated_at"/>
  1482. <property name="type" value="timestamp"/>
  1483. </element>
  1484. <element action="add" uuid="0437cbe3-b2c4-4fa6-8c9c-7df74e17a5e2" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" type="field">
  1485. <property name="auto-increment" value="true"/>
  1486. <property name="name" value="id"/>
  1487. <property name="primary" value="true"/>
  1488. <property name="required" value="true"/>
  1489. <property name="type" value="bigInteger"/>
  1490. <property name="unique" value="true"/>
  1491. <property name="unsigned" value="true"/>
  1492. </element>
  1493. <element action="add" uuid="a55daaa7-8ba7-4bb0-83dd-dcfdb8036968" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="0437cbe3-b2c4-4fa6-8c9c-7df74e17a5e2" type="field">
  1494. <property name="name" value="segnalazione_id"/>
  1495. <property name="type" value="bigInteger"/>
  1496. <property name="unsigned" value="true"/>
  1497. </element>
  1498. <element action="add" uuid="734b6cb6-58f7-4a2b-b27d-ab8dc46cf714" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="a55daaa7-8ba7-4bb0-83dd-dcfdb8036968" type="field">
  1499. <property name="name" value="user_id"/>
  1500. <property name="type" value="bigInteger"/>
  1501. <property name="unsigned" value="true"/>
  1502. </element>
  1503. <element action="add" uuid="f748b6d3-a6af-40b0-a522-4447364a2948" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="734b6cb6-58f7-4a2b-b27d-ab8dc46cf714" type="field">
  1504. <property name="name" value="text"/>
  1505. <property name="type" value="text"/>
  1506. </element>
  1507. <element action="add" uuid="b3f34db1-e2e5-4426-a960-51eb2d8ca0b1" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="f748b6d3-a6af-40b0-a522-4447364a2948" type="field">
  1508. <property name="default" value="0"/>
  1509. <property name="name" value="tempo_minuti"/>
  1510. <property name="type" value="integer"/>
  1511. </element>
  1512. <element action="add" uuid="f305a718-29d3-4bd5-8da9-619db3671251" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="b3f34db1-e2e5-4426-a960-51eb2d8ca0b1" type="field">
  1513. <property name="cast" value="datetime"/>
  1514. <property name="castFormat" value="d/m/Y H:i"/>
  1515. <property name="name" value="tempo_data"/>
  1516. <property name="type" value="dateTime"/>
  1517. </element>
  1518. <element action="add" uuid="330f67c6-9da7-4130-8907-9c1339a62723" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="f305a718-29d3-4bd5-8da9-619db3671251" type="field">
  1519. <property name="decimal" value="2"/>
  1520. <property name="name" value="costo"/>
  1521. <property name="size" value="10"/>
  1522. <property name="type" value="decimal"/>
  1523. </element>
  1524. <element action="add" uuid="2d89a9fb-9229-412e-b6df-9b35a19f14a5" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="330f67c6-9da7-4130-8907-9c1339a62723" type="field">
  1525. <property name="name" value="costo_descrizione"/>
  1526. <property name="type" value="text"/>
  1527. </element>
  1528. <element action="add" uuid="c48733ff-ec02-4aa0-be7c-25be727c3c1e" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="2d89a9fb-9229-412e-b6df-9b35a19f14a5" type="field">
  1529. <property name="default" value="1"/>
  1530. <property name="name" value="riservata"/>
  1531. <property name="type" value="boolean"/>
  1532. </element>
  1533. <element action="add" uuid="dca8d620-9b45-4a1f-96e4-0d76392ac410" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="c48733ff-ec02-4aa0-be7c-25be727c3c1e" type="field">
  1534. <property name="name" value="riferimento"/>
  1535. <property name="type" value="string"/>
  1536. </element>
  1537. <element action="add" uuid="e2ca0f54-426d-4977-b729-fd007dee6f64" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="dca8d620-9b45-4a1f-96e4-0d76392ac410" type="field">
  1538. <property name="name" value="email"/>
  1539. <property name="type" value="string"/>
  1540. </element>
  1541. <element action="add" uuid="7b367191-cdfd-465f-8efe-ba0922fa32ff" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="e2ca0f54-426d-4977-b729-fd007dee6f64" type="field">
  1542. <property name="name" value="telefono"/>
  1543. <property name="type" value="string"/>
  1544. </element>
  1545. <element action="add" uuid="d0ae0044-ec8e-4aee-8cb5-84d5a663c57a" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="7b367191-cdfd-465f-8efe-ba0922fa32ff" type="field">
  1546. <property name="name" value="created_at"/>
  1547. <property name="type" value="timestamp"/>
  1548. </element>
  1549. <element action="add" uuid="80c6b3cc-d201-4972-8b42-e25cbee8b615" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="d0ae0044-ec8e-4aee-8cb5-84d5a663c57a" type="field">
  1550. <property name="name" value="updated_at"/>
  1551. <property name="type" value="timestamp"/>
  1552. </element>
  1553. <element action="add" uuid="30f3fa1d-7834-42da-bbfc-3a60ddad4034" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" type="field">
  1554. <property name="auto-increment" value="true"/>
  1555. <property name="name" value="id"/>
  1556. <property name="primary" value="true"/>
  1557. <property name="required" value="true"/>
  1558. <property name="type" value="bigInteger"/>
  1559. <property name="unique" value="true"/>
  1560. <property name="unsigned" value="true"/>
  1561. </element>
  1562. <element action="add" uuid="d48cb9c0-3907-4472-88a5-44774d686d37" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" sibling-uuid="30f3fa1d-7834-42da-bbfc-3a60ddad4034" type="field">
  1563. <property name="name" value="annotazione_id"/>
  1564. <property name="type" value="bigInteger"/>
  1565. <property name="unsigned" value="true"/>
  1566. </element>
  1567. <element action="add" uuid="96220dc4-79f3-4e79-8024-cd4a976f443a" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" sibling-uuid="d48cb9c0-3907-4472-88a5-44774d686d37" type="field">
  1568. <property name="name" value="nome"/>
  1569. <property name="type" value="string"/>
  1570. </element>
  1571. <element action="add" uuid="97adca03-8802-4042-8f00-ff79b3910b0d" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" sibling-uuid="96220dc4-79f3-4e79-8024-cd4a976f443a" type="field">
  1572. <property name="name" value="descrizione"/>
  1573. <property name="type" value="string"/>
  1574. </element>
  1575. <element action="add" uuid="14d15c1e-3bfe-45b8-8d74-5ddd222ff3b5" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" sibling-uuid="97adca03-8802-4042-8f00-ff79b3910b0d" type="field">
  1576. <property name="name" value="path_file"/>
  1577. <property name="type" value="string"/>
  1578. </element>
  1579. <element action="add" uuid="aa099fda-2af1-4c9e-8e79-3020bff7acde" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" sibling-uuid="14d15c1e-3bfe-45b8-8d74-5ddd222ff3b5" type="field">
  1580. <property name="name" value="created_at"/>
  1581. <property name="type" value="timestamp"/>
  1582. </element>
  1583. <element action="add" uuid="65bce51b-82df-4a22-a870-38aa7dc6e304" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" sibling-uuid="aa099fda-2af1-4c9e-8e79-3020bff7acde" type="field">
  1584. <property name="name" value="updated_at"/>
  1585. <property name="type" value="timestamp"/>
  1586. </element>
  1587. <element action="add" uuid="e489d50b-7a4e-4869-b62a-6e552e4a1140" parent-uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" type="field">
  1588. <property name="auto-increment" value="true"/>
  1589. <property name="name" value="id"/>
  1590. <property name="primary" value="true"/>
  1591. <property name="required" value="true"/>
  1592. <property name="type" value="bigInteger"/>
  1593. <property name="unique" value="true"/>
  1594. <property name="unsigned" value="true"/>
  1595. </element>
  1596. <element action="add" uuid="a51b37ab-f251-4222-b5cd-09de8f6032ea" parent-uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" sibling-uuid="e489d50b-7a4e-4869-b62a-6e552e4a1140" type="field">
  1597. <property name="name" value="nazione_id"/>
  1598. <property name="type" value="bigInteger"/>
  1599. <property name="unsigned" value="true"/>
  1600. </element>
  1601. <element action="add" uuid="673adc64-b483-4df0-b282-74322004a246" parent-uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" sibling-uuid="a51b37ab-f251-4222-b5cd-09de8f6032ea" type="field">
  1602. <property name="name" value="nome"/>
  1603. <property name="type" value="string"/>
  1604. </element>
  1605. <element action="add" uuid="640d52fb-d124-4ee8-a184-52f855e4153b" parent-uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" sibling-uuid="673adc64-b483-4df0-b282-74322004a246" type="field">
  1606. <property name="name" value="sigla"/>
  1607. <property name="type" value="string"/>
  1608. </element>
  1609. <element action="add" uuid="7f7a24b6-229f-4acf-aef3-0ec512768d24" parent-uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" sibling-uuid="640d52fb-d124-4ee8-a184-52f855e4153b" type="field">
  1610. <property name="name" value="created_at"/>
  1611. <property name="type" value="timestamp"/>
  1612. </element>
  1613. <element action="add" uuid="62d0de6c-f896-491b-99db-1840ede2d1fa" parent-uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" sibling-uuid="7f7a24b6-229f-4acf-aef3-0ec512768d24" type="field">
  1614. <property name="name" value="updated_at"/>
  1615. <property name="type" value="timestamp"/>
  1616. </element>
  1617. <element action="add" uuid="67af633f-42c4-416d-ab1f-6b1c8a36dd82" parent-uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" type="field">
  1618. <property name="auto-increment" value="true"/>
  1619. <property name="name" value="id"/>
  1620. <property name="primary" value="true"/>
  1621. <property name="required" value="true"/>
  1622. <property name="type" value="bigInteger"/>
  1623. <property name="unique" value="true"/>
  1624. <property name="unsigned" value="true"/>
  1625. </element>
  1626. <element action="add" uuid="c98ab5d4-058e-46c3-ae49-5cf78478c8e0" parent-uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" sibling-uuid="67af633f-42c4-416d-ab1f-6b1c8a36dd82" type="field">
  1627. <property name="name" value="nome"/>
  1628. <property name="type" value="string"/>
  1629. </element>
  1630. <element action="add" uuid="7ed5c802-64fb-4bba-aca9-0de4a1d1b099" parent-uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" sibling-uuid="c98ab5d4-058e-46c3-ae49-5cf78478c8e0" type="field">
  1631. <property name="name" value="sigla"/>
  1632. <property name="type" value="string"/>
  1633. </element>
  1634. <element action="add" uuid="b7cb1d70-b9a6-441a-aacd-7cd963cbc371" parent-uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" sibling-uuid="7ed5c802-64fb-4bba-aca9-0de4a1d1b099" type="field">
  1635. <property name="name" value="created_at"/>
  1636. <property name="type" value="timestamp"/>
  1637. </element>
  1638. <element action="add" uuid="b40e30e1-a742-4297-932c-e28291e0a8e4" parent-uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" sibling-uuid="b7cb1d70-b9a6-441a-aacd-7cd963cbc371" type="field">
  1639. <property name="name" value="updated_at"/>
  1640. <property name="type" value="timestamp"/>
  1641. </element>
  1642. <element action="add" uuid="656af606-c65b-4b92-bac2-4e8a23d286e4" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" type="field">
  1643. <property name="auto-increment" value="true"/>
  1644. <property name="name" value="id"/>
  1645. <property name="primary" value="true"/>
  1646. <property name="required" value="true"/>
  1647. <property name="type" value="bigInteger"/>
  1648. <property name="unique" value="true"/>
  1649. <property name="unsigned" value="true"/>
  1650. </element>
  1651. <element action="add" uuid="e52e1b52-9dd3-4f50-ade3-a01755961201" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" sibling-uuid="656af606-c65b-4b92-bac2-4e8a23d286e4" type="field">
  1652. <property name="name" value="provincia_id"/>
  1653. <property name="type" value="bigInteger"/>
  1654. <property name="unsigned" value="true"/>
  1655. </element>
  1656. <element action="add" uuid="366b0dc8-c30b-4649-a1a2-3819e803595b" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" sibling-uuid="e52e1b52-9dd3-4f50-ade3-a01755961201" type="field">
  1657. <property name="name" value="nazione_id"/>
  1658. <property name="type" value="bigInteger"/>
  1659. <property name="unsigned" value="true"/>
  1660. </element>
  1661. <element action="add" uuid="02c5a258-0c72-47fc-8a1f-0b0af6c37e38" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" sibling-uuid="366b0dc8-c30b-4649-a1a2-3819e803595b" type="field">
  1662. <property name="name" value="nome"/>
  1663. <property name="type" value="string"/>
  1664. </element>
  1665. <element action="add" uuid="efc61454-f98b-49aa-98f2-3e6014129b09" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" sibling-uuid="02c5a258-0c72-47fc-8a1f-0b0af6c37e38" type="field">
  1666. <property name="name" value="codice_catastale"/>
  1667. <property name="type" value="string"/>
  1668. </element>
  1669. <element action="add" uuid="8f5ae8e3-acaf-40ea-8eba-3139d76454a7" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" sibling-uuid="efc61454-f98b-49aa-98f2-3e6014129b09" type="field">
  1670. <property name="name" value="created_at"/>
  1671. <property name="type" value="timestamp"/>
  1672. </element>
  1673. <element action="add" uuid="e603d21d-ddb5-46bd-929f-94a78dc0c5f5" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" sibling-uuid="8f5ae8e3-acaf-40ea-8eba-3139d76454a7" type="field">
  1674. <property name="name" value="updated_at"/>
  1675. <property name="type" value="timestamp"/>
  1676. </element>
  1677. <element action="add" uuid="badce0d4-64dd-43b2-be60-820ff13951fa" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" type="field">
  1678. <property name="name" value="key"/>
  1679. <property name="primary" value="true"/>
  1680. <property name="required" value="true"/>
  1681. <property name="type" value="string"/>
  1682. <property name="unique" value="true"/>
  1683. </element>
  1684. <element action="add" uuid="8ab75bd9-b755-4637-a230-9e2d5de6ac55" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" sibling-uuid="badce0d4-64dd-43b2-be60-820ff13951fa" type="field">
  1685. <property name="name" value="group"/>
  1686. <property name="type" value="string"/>
  1687. </element>
  1688. <element action="add" uuid="4210e393-7c3b-4982-8bee-30238073d5bc" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" sibling-uuid="8ab75bd9-b755-4637-a230-9e2d5de6ac55" type="field">
  1689. <property name="name" value="display_name"/>
  1690. <property name="type" value="string"/>
  1691. </element>
  1692. <element action="add" uuid="e9019a5d-d4b6-4bf5-a014-7963da6341f8" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" sibling-uuid="4210e393-7c3b-4982-8bee-30238073d5bc" type="field">
  1693. <property name="name" value="value"/>
  1694. <property name="type" value="longText"/>
  1695. </element>
  1696. <element action="add" uuid="9e54a33a-8637-4273-8027-e0aecc53eeb6" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" sibling-uuid="e9019a5d-d4b6-4bf5-a014-7963da6341f8" type="field">
  1697. <property name="name" value="order"/>
  1698. <property name="type" value="integer"/>
  1699. </element>
  1700. <element action="add" uuid="e04ce407-d9d0-4c74-9a8d-721deeb63c3c" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" sibling-uuid="9e54a33a-8637-4273-8027-e0aecc53eeb6" type="field">
  1701. <property name="name" value="type"/>
  1702. <property name="type" value="string"/>
  1703. </element>
  1704. <element action="add" uuid="fb7f6e10-5782-4506-9258-4b6185860d71" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" sibling-uuid="e04ce407-d9d0-4c74-9a8d-721deeb63c3c" type="field">
  1705. <property name="name" value="created_at"/>
  1706. <property name="type" value="timestamp"/>
  1707. </element>
  1708. <element action="add" uuid="370dbe57-9a63-4af4-ad81-b7c7647c273c" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" sibling-uuid="fb7f6e10-5782-4506-9258-4b6185860d71" type="field">
  1709. <property name="name" value="updated_at"/>
  1710. <property name="type" value="timestamp"/>
  1711. </element>
  1712. <element action="add" uuid="ace37544-4c55-4ca9-8144-2da585fae3d6" parent-uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" type="field">
  1713. <property name="auto-increment" value="true"/>
  1714. <property name="name" value="id"/>
  1715. <property name="primary" value="true"/>
  1716. <property name="required" value="true"/>
  1717. <property name="type" value="bigInteger"/>
  1718. <property name="unique" value="true"/>
  1719. <property name="unsigned" value="true"/>
  1720. </element>
  1721. <element action="add" uuid="7ad720b4-ab7e-43a5-b29a-4f434a3d886b" parent-uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" sibling-uuid="ace37544-4c55-4ca9-8144-2da585fae3d6" type="field">
  1722. <property name="name" value="event"/>
  1723. <property name="type" value="string"/>
  1724. </element>
  1725. <element action="add" uuid="973a3230-ede5-4efd-9cfb-84e1c19876b9" parent-uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" sibling-uuid="7ad720b4-ab7e-43a5-b29a-4f434a3d886b" type="field">
  1726. <property name="name" value="users"/>
  1727. <property name="type" value="json"/>
  1728. </element>
  1729. <element action="add" uuid="72f71f81-6a3e-4ad9-8950-fe2a8542d25c" parent-uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" sibling-uuid="973a3230-ede5-4efd-9cfb-84e1c19876b9" type="field">
  1730. <property name="default" value="1"/>
  1731. <property name="name" value="is_attivo"/>
  1732. <property name="type" value="boolean"/>
  1733. </element>
  1734. <element action="add" uuid="2917737f-d22e-4bcb-b966-ebf834a6d20e" parent-uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" sibling-uuid="72f71f81-6a3e-4ad9-8950-fe2a8542d25c" type="field">
  1735. <property name="name" value="created_at"/>
  1736. <property name="type" value="timestamp"/>
  1737. </element>
  1738. <element action="add" uuid="573df29f-6ff9-4ffc-897e-c72069ab4200" parent-uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" sibling-uuid="2917737f-d22e-4bcb-b966-ebf834a6d20e" type="field">
  1739. <property name="name" value="updated_at"/>
  1740. <property name="type" value="timestamp"/>
  1741. </element>
  1742. <element action="add" uuid="cd5804ad-d5cc-4203-b38a-e5cfa3ebacac" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" type="field">
  1743. <property name="auto-increment" value="true"/>
  1744. <property name="name" value="id"/>
  1745. <property name="primary" value="true"/>
  1746. <property name="required" value="true"/>
  1747. <property name="type" value="bigInteger"/>
  1748. <property name="unique" value="true"/>
  1749. <property name="unsigned" value="true"/>
  1750. </element>
  1751. <element action="add" uuid="1bae7c61-7d9b-4795-97ee-fbff819cb95a" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="cd5804ad-d5cc-4203-b38a-e5cfa3ebacac" type="field">
  1752. <property name="name" value="codice"/>
  1753. <property name="type" value="string"/>
  1754. </element>
  1755. <element action="add" uuid="5bd47d50-0113-40ed-b737-aa03f5f9401b" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="1bae7c61-7d9b-4795-97ee-fbff819cb95a" type="field">
  1756. <property name="name" value="nome"/>
  1757. <property name="type" value="string"/>
  1758. </element>
  1759. <element action="add" uuid="8aae2f86-f5c8-4281-83fd-b46c70228e53" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="5bd47d50-0113-40ed-b737-aa03f5f9401b" type="field">
  1760. <property name="name" value="descrizione"/>
  1761. <property name="type" value="text"/>
  1762. </element>
  1763. <element action="add" uuid="c7f8fdd4-0962-4932-bc9a-ca7b96b9b2d8" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="8aae2f86-f5c8-4281-83fd-b46c70228e53" type="field">
  1764. <property name="name" value="tipo"/>
  1765. <property name="type" value="string"/>
  1766. </element>
  1767. <element action="add" uuid="30a50b48-7975-46d3-82e4-05e90afa3a6e" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="c7f8fdd4-0962-4932-bc9a-ca7b96b9b2d8" type="field">
  1768. <property name="name" value="unita_misura"/>
  1769. <property name="type" value="string"/>
  1770. </element>
  1771. <element action="add" uuid="fcdc4a08-e2d3-4fb5-baf2-a90df6fbbb04" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="30a50b48-7975-46d3-82e4-05e90afa3a6e" type="field">
  1772. <property name="decimal" value="2"/>
  1773. <property name="name" value="prezzo"/>
  1774. <property name="size" value="10"/>
  1775. <property name="type" value="decimal"/>
  1776. </element>
  1777. <element action="add" uuid="81b8c54f-f859-4ff3-9ce0-ffbade00aa28" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="fcdc4a08-e2d3-4fb5-baf2-a90df6fbbb04" type="field">
  1778. <property name="name" value="periodo"/>
  1779. <property name="type" value="string"/>
  1780. </element>
  1781. <element action="add" uuid="a40f0518-a638-4247-90a1-6aeac1701428" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="81b8c54f-f859-4ff3-9ce0-ffbade00aa28" type="field">
  1782. <property name="default" value="1"/>
  1783. <property name="name" value="attivo"/>
  1784. <property name="type" value="boolean"/>
  1785. </element>
  1786. <element action="add" uuid="1df3d6c4-020e-48e8-b944-aee2698e66a6" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="a40f0518-a638-4247-90a1-6aeac1701428" type="field">
  1787. <property name="default" value="0"/>
  1788. <property name="name" value="prenotabile_online"/>
  1789. <property name="type" value="boolean"/>
  1790. </element>
  1791. <element action="add" uuid="693b4419-0151-4d8b-89a9-ab7b2ce17f9d" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="1df3d6c4-020e-48e8-b944-aee2698e66a6" type="field">
  1792. <property name="name" value="meta"/>
  1793. <property name="type" value="json"/>
  1794. </element>
  1795. <element action="add" uuid="5126112e-189a-4b54-9ff5-cc44da7d60fe" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="693b4419-0151-4d8b-89a9-ab7b2ce17f9d" type="field">
  1796. <property name="name" value="created_at"/>
  1797. <property name="type" value="timestamp"/>
  1798. </element>
  1799. <element action="add" uuid="e3870d5f-497d-41b4-8e78-09ba31fc34f8" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" sibling-uuid="5126112e-189a-4b54-9ff5-cc44da7d60fe" type="field">
  1800. <property name="name" value="updated_at"/>
  1801. <property name="type" value="timestamp"/>
  1802. </element>
  1803. <element action="add" uuid="2fc7e24f-923a-49ea-acb2-82d9a15535a2" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" type="field">
  1804. <property name="auto-increment" value="true"/>
  1805. <property name="name" value="id"/>
  1806. <property name="primary" value="true"/>
  1807. <property name="required" value="true"/>
  1808. <property name="type" value="bigInteger"/>
  1809. <property name="unique" value="true"/>
  1810. <property name="unsigned" value="true"/>
  1811. </element>
  1812. <element action="add" uuid="a430d266-f99f-4e48-be62-de6daddf22ab" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="2fc7e24f-923a-49ea-acb2-82d9a15535a2" type="field">
  1813. <property name="name" value="user_id"/>
  1814. <property name="type" value="bigInteger"/>
  1815. <property name="unsigned" value="true"/>
  1816. </element>
  1817. <element action="add" uuid="a97d83fa-0893-4bcc-a1d4-3fba9849789a" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="a430d266-f99f-4e48-be62-de6daddf22ab" type="field">
  1818. <property name="name" value="contratto_template_id"/>
  1819. <property name="type" value="bigInteger"/>
  1820. <property name="unsigned" value="true"/>
  1821. </element>
  1822. <element action="add" uuid="94ee2223-9e46-43e2-989b-f75e6a6ce3ca" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="a97d83fa-0893-4bcc-a1d4-3fba9849789a" type="field">
  1823. <property name="name" value="nome"/>
  1824. <property name="type" value="string"/>
  1825. </element>
  1826. <element action="add" uuid="140deaa1-bdab-4a67-90ac-6b69d96e344e" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="94ee2223-9e46-43e2-989b-f75e6a6ce3ca" type="field">
  1827. <property name="decimal" value="2"/>
  1828. <property name="name" value="costo"/>
  1829. <property name="size" value="10"/>
  1830. <property name="type" value="decimal"/>
  1831. </element>
  1832. <element action="add" uuid="9350c4b3-eab3-464a-9366-c0edf37869ce" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="140deaa1-bdab-4a67-90ac-6b69d96e344e" type="field">
  1833. <property name="name" value="periodo"/>
  1834. <property name="type" value="string"/>
  1835. </element>
  1836. <element action="add" uuid="36c9fce4-d27b-4b3a-a6b2-58dc0e4dd8a2" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="9350c4b3-eab3-464a-9366-c0edf37869ce" type="field">
  1837. <property name="name" value="data_inizio"/>
  1838. <property name="type" value="date"/>
  1839. </element>
  1840. <element action="add" uuid="d3ca8b85-9117-4b55-a455-66150bd31d3e" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="36c9fce4-d27b-4b3a-a6b2-58dc0e4dd8a2" type="field">
  1841. <property name="name" value="data_fine"/>
  1842. <property name="type" value="date"/>
  1843. </element>
  1844. <element action="add" uuid="da43c1da-6158-40bc-bd15-62dddad492a7" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="d3ca8b85-9117-4b55-a455-66150bd31d3e" type="field">
  1845. <property name="default" value="0"/>
  1846. <property name="name" value="collegabile_segnalazioni"/>
  1847. <property name="type" value="boolean"/>
  1848. </element>
  1849. <element action="add" uuid="629ff801-824d-4ad7-bc7d-b72a2a3717cf" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="da43c1da-6158-40bc-bd15-62dddad492a7" type="field">
  1850. <property name="decimal" value="2"/>
  1851. <property name="name" value="quantita_residua"/>
  1852. <property name="size" value="10"/>
  1853. <property name="type" value="decimal"/>
  1854. </element>
  1855. <element action="add" uuid="579649ed-46f6-4371-9692-58e724bf5ca1" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="629ff801-824d-4ad7-bc7d-b72a2a3717cf" type="field">
  1856. <property name="name" value="note"/>
  1857. <property name="type" value="text"/>
  1858. </element>
  1859. <element action="add" uuid="d811fff4-3f7a-488b-9be1-c623c26f43f8" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="579649ed-46f6-4371-9692-58e724bf5ca1" type="field">
  1860. <property name="default" value="1"/>
  1861. <property name="name" value="attivo"/>
  1862. <property name="type" value="boolean"/>
  1863. </element>
  1864. <element action="add" uuid="b89c48dd-a31b-4173-98c3-56f688449a23" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="d811fff4-3f7a-488b-9be1-c623c26f43f8" type="field">
  1865. <property name="name" value="created_at"/>
  1866. <property name="type" value="timestamp"/>
  1867. </element>
  1868. <element action="add" uuid="8da87f11-9757-486e-beab-a0b2c1e5d0e9" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="b89c48dd-a31b-4173-98c3-56f688449a23" type="field">
  1869. <property name="name" value="updated_at"/>
  1870. <property name="type" value="timestamp"/>
  1871. </element>
  1872. <element action="add" uuid="c3304ea3-9e77-4559-992c-be946ba3e47f" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" type="field">
  1873. <property name="auto-increment" value="true"/>
  1874. <property name="name" value="id"/>
  1875. <property name="primary" value="true"/>
  1876. <property name="required" value="true"/>
  1877. <property name="type" value="bigInteger"/>
  1878. <property name="unique" value="true"/>
  1879. <property name="unsigned" value="true"/>
  1880. </element>
  1881. <element action="add" uuid="63813fc9-575d-4e6e-810d-b1047497c075" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="c3304ea3-9e77-4559-992c-be946ba3e47f" type="field">
  1882. <property name="name" value="user_id"/>
  1883. <property name="type" value="bigInteger"/>
  1884. <property name="unsigned" value="true"/>
  1885. </element>
  1886. <element action="add" uuid="f023a417-2c0b-4fff-9c80-21d2425be5ce" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="63813fc9-575d-4e6e-810d-b1047497c075" type="field">
  1887. <property name="name" value="numero"/>
  1888. <property name="type" value="integer"/>
  1889. </element>
  1890. <element action="add" uuid="5ba72745-a94a-4bf2-b90d-a61505e4a60a" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="f023a417-2c0b-4fff-9c80-21d2425be5ce" type="field">
  1891. <property name="name" value="titolo"/>
  1892. <property name="type" value="string"/>
  1893. </element>
  1894. <element action="add" uuid="6fbf26fd-3f6a-423d-b93d-48010787778d" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="5ba72745-a94a-4bf2-b90d-a61505e4a60a" type="field">
  1895. <property name="name" value="stato"/>
  1896. <property name="type" value="string"/>
  1897. </element>
  1898. <element action="add" uuid="c1700acb-f03a-4d19-bcf4-aa54690109ec" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="6fbf26fd-3f6a-423d-b93d-48010787778d" type="field">
  1899. <property name="name" value="data"/>
  1900. <property name="type" value="date"/>
  1901. </element>
  1902. <element action="add" uuid="d5f192a6-8011-4b45-9e54-4b8e635facb5" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="c1700acb-f03a-4d19-bcf4-aa54690109ec" type="field">
  1903. <property name="name" value="data_validita"/>
  1904. <property name="type" value="date"/>
  1905. </element>
  1906. <element action="add" uuid="73cbf6f8-9a53-41f7-82f0-1e60cee174f3" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="d5f192a6-8011-4b45-9e54-4b8e635facb5" type="field">
  1907. <property name="decimal" value="2"/>
  1908. <property name="name" value="totale"/>
  1909. <property name="size" value="10"/>
  1910. <property name="type" value="decimal"/>
  1911. </element>
  1912. <element action="add" uuid="74caf115-8e82-457f-b4ff-041634717a84" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="73cbf6f8-9a53-41f7-82f0-1e60cee174f3" type="field">
  1913. <property name="name" value="note"/>
  1914. <property name="type" value="text"/>
  1915. </element>
  1916. <element action="add" uuid="a9a104ed-13f8-4798-a6ca-8935b0341cf1" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="74caf115-8e82-457f-b4ff-041634717a84" type="field">
  1917. <property name="name" value="path_file"/>
  1918. <property name="type" value="string"/>
  1919. </element>
  1920. <element action="add" uuid="515560f9-be1b-4a21-921e-98fd5ad103b0" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="a9a104ed-13f8-4798-a6ca-8935b0341cf1" type="field">
  1921. <property name="name" value="meta"/>
  1922. <property name="type" value="json"/>
  1923. </element>
  1924. <element action="add" uuid="bf09aff4-7fd0-4d51-af42-6aec217b7822" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="515560f9-be1b-4a21-921e-98fd5ad103b0" type="field">
  1925. <property name="name" value="created_at"/>
  1926. <property name="type" value="timestamp"/>
  1927. </element>
  1928. <element action="add" uuid="42e19ba6-0c54-4ffb-9c8e-1026f077b6af" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" sibling-uuid="bf09aff4-7fd0-4d51-af42-6aec217b7822" type="field">
  1929. <property name="name" value="updated_at"/>
  1930. <property name="type" value="timestamp"/>
  1931. </element>
  1932. <element action="add" uuid="7fac024b-f96f-4012-9097-aea5a263d403" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" type="field">
  1933. <property name="auto-increment" value="true"/>
  1934. <property name="name" value="id"/>
  1935. <property name="primary" value="true"/>
  1936. <property name="required" value="true"/>
  1937. <property name="type" value="bigInteger"/>
  1938. <property name="unique" value="true"/>
  1939. <property name="unsigned" value="true"/>
  1940. </element>
  1941. <element action="add" uuid="ef151a19-0644-41c0-a0d3-e4c09ea3f25c" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="7fac024b-f96f-4012-9097-aea5a263d403" type="field">
  1942. <property name="name" value="offerta_id"/>
  1943. <property name="type" value="bigInteger"/>
  1944. <property name="unsigned" value="true"/>
  1945. </element>
  1946. <element action="add" uuid="ff013f74-b127-47b5-91b4-0d0122ab7b40" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="ef151a19-0644-41c0-a0d3-e4c09ea3f25c" type="field">
  1947. <property name="name" value="prodotto_id"/>
  1948. <property name="type" value="bigInteger"/>
  1949. <property name="unsigned" value="true"/>
  1950. </element>
  1951. <element action="add" uuid="ed5cf628-97fd-47c8-bfd7-fbe70d9fbde1" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="ff013f74-b127-47b5-91b4-0d0122ab7b40" type="field">
  1952. <property name="name" value="descrizione"/>
  1953. <property name="type" value="string"/>
  1954. </element>
  1955. <element action="add" uuid="a398d67d-eb98-4ed7-8ec2-7b3e6c97d889" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="ed5cf628-97fd-47c8-bfd7-fbe70d9fbde1" type="field">
  1956. <property name="decimal" value="2"/>
  1957. <property name="name" value="quantita"/>
  1958. <property name="size" value="10"/>
  1959. <property name="type" value="decimal"/>
  1960. </element>
  1961. <element action="add" uuid="bcfa8042-a56b-4c5e-b727-b95f17d683cf" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="a398d67d-eb98-4ed7-8ec2-7b3e6c97d889" type="field">
  1962. <property name="name" value="unita_misura"/>
  1963. <property name="type" value="string"/>
  1964. </element>
  1965. <element action="add" uuid="372c3640-3751-4f24-b56e-bbcc3bf47852" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="bcfa8042-a56b-4c5e-b727-b95f17d683cf" type="field">
  1966. <property name="decimal" value="2"/>
  1967. <property name="name" value="prezzo_unitario"/>
  1968. <property name="size" value="10"/>
  1969. <property name="type" value="decimal"/>
  1970. </element>
  1971. <element action="add" uuid="12147109-0d9f-4540-9507-b94a0c4a2975" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="372c3640-3751-4f24-b56e-bbcc3bf47852" type="field">
  1972. <property name="decimal" value="2"/>
  1973. <property name="name" value="sconto"/>
  1974. <property name="size" value="10"/>
  1975. <property name="type" value="decimal"/>
  1976. </element>
  1977. <element action="add" uuid="ec952846-0eff-4955-a147-4033fcfd651e" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="12147109-0d9f-4540-9507-b94a0c4a2975" type="field">
  1978. <property name="default" value="0"/>
  1979. <property name="name" value="ordine"/>
  1980. <property name="type" value="integer"/>
  1981. </element>
  1982. <element action="add" uuid="d7c52787-0c81-49f9-a3fb-57a94e0a92aa" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="ec952846-0eff-4955-a147-4033fcfd651e" type="field">
  1983. <property name="name" value="note_private"/>
  1984. <property name="type" value="text"/>
  1985. </element>
  1986. <element action="add" uuid="563af2f8-093c-4e5b-baf5-0f2249311f62" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="d7c52787-0c81-49f9-a3fb-57a94e0a92aa" type="field">
  1987. <property name="decimal" value="2"/>
  1988. <property name="name" value="tempo_stimato"/>
  1989. <property name="size" value="10"/>
  1990. <property name="type" value="decimal"/>
  1991. </element>
  1992. <element action="add" uuid="7dee4720-093d-49e4-aa16-2a9f192f273b" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="563af2f8-093c-4e5b-baf5-0f2249311f62" type="field">
  1993. <property name="name" value="created_at"/>
  1994. <property name="type" value="timestamp"/>
  1995. </element>
  1996. <element action="add" uuid="dd5d14dc-9b7a-43f6-bce2-8d7bbf3e4909" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" sibling-uuid="7dee4720-093d-49e4-aa16-2a9f192f273b" type="field">
  1997. <property name="name" value="updated_at"/>
  1998. <property name="type" value="timestamp"/>
  1999. </element>
  2000. <element action="add" uuid="2edeaae9-ee24-486a-8915-68701af23fa3" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" type="field">
  2001. <property name="auto-increment" value="true"/>
  2002. <property name="name" value="id"/>
  2003. <property name="primary" value="true"/>
  2004. <property name="required" value="true"/>
  2005. <property name="type" value="bigInteger"/>
  2006. <property name="unique" value="true"/>
  2007. <property name="unsigned" value="true"/>
  2008. </element>
  2009. <element action="add" uuid="4b1a6baf-3a48-4170-83a5-361faef16291" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="2edeaae9-ee24-486a-8915-68701af23fa3" type="field">
  2010. <property name="name" value="user_id"/>
  2011. <property name="type" value="bigInteger"/>
  2012. <property name="unsigned" value="true"/>
  2013. </element>
  2014. <element action="add" uuid="f3a008ed-3125-4530-b9d4-0296c190226c" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="4b1a6baf-3a48-4170-83a5-361faef16291" type="field">
  2015. <property name="name" value="numero"/>
  2016. <property name="type" value="integer"/>
  2017. </element>
  2018. <element action="add" uuid="0c4cb8f3-62b6-40b3-b9b5-ee228663551a" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="f3a008ed-3125-4530-b9d4-0296c190226c" type="field">
  2019. <property name="name" value="titolo"/>
  2020. <property name="type" value="string"/>
  2021. </element>
  2022. <element action="add" uuid="6e27b2cc-35d1-4694-a86a-1713e30100fe" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="0c4cb8f3-62b6-40b3-b9b5-ee228663551a" type="field">
  2023. <property name="name" value="stato"/>
  2024. <property name="type" value="string"/>
  2025. </element>
  2026. <element action="add" uuid="3c3ba72a-22ea-40b8-8395-c2e8a878d908" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="6e27b2cc-35d1-4694-a86a-1713e30100fe" type="field">
  2027. <property name="decimal" value="2"/>
  2028. <property name="default" value="0"/>
  2029. <property name="name" value="percentuale_avanzamento"/>
  2030. <property name="size" value="5"/>
  2031. <property name="type" value="integer"/>
  2032. </element>
  2033. <element action="add" uuid="19096a86-de29-4ab5-8689-d9edd6f93644" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="3c3ba72a-22ea-40b8-8395-c2e8a878d908" type="field">
  2034. <property name="name" value="data_apertura"/>
  2035. <property name="type" value="date"/>
  2036. </element>
  2037. <element action="add" uuid="ea74aee1-de7e-4feb-aeea-f59a2806f7c0" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="19096a86-de29-4ab5-8689-d9edd6f93644" type="field">
  2038. <property name="name" value="data_chiusura"/>
  2039. <property name="type" value="date"/>
  2040. </element>
  2041. <element action="add" uuid="dbfdfb46-0d9e-4921-8ee4-b702cb3988f4" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="ea74aee1-de7e-4feb-aeea-f59a2806f7c0" type="field">
  2042. <property name="name" value="note"/>
  2043. <property name="type" value="text"/>
  2044. </element>
  2045. <element action="add" uuid="bcce23aa-fa1e-4b27-8fb0-260ac25113ef" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="dbfdfb46-0d9e-4921-8ee4-b702cb3988f4" type="field">
  2046. <property name="name" value="meta"/>
  2047. <property name="type" value="json"/>
  2048. </element>
  2049. <element action="add" uuid="310c81ea-88a2-489a-9223-21b77da5cd21" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="bcce23aa-fa1e-4b27-8fb0-260ac25113ef" type="field">
  2050. <property name="name" value="created_at"/>
  2051. <property name="type" value="timestamp"/>
  2052. </element>
  2053. <element action="add" uuid="e690deea-d3d1-415c-a077-cfe5408341e6" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" sibling-uuid="310c81ea-88a2-489a-9223-21b77da5cd21" type="field">
  2054. <property name="name" value="updated_at"/>
  2055. <property name="type" value="timestamp"/>
  2056. </element>
  2057. <element action="add" uuid="cba87bc3-ab11-4af2-bbb8-6830ad23c01a" parent-uuid="98806966-1270-452c-b1ab-cdae6e0016b6" type="field">
  2058. <property name="name" value="offerta_id"/>
  2059. <property name="primary" value="true"/>
  2060. <property name="required" value="true"/>
  2061. <property name="type" value="bigInteger"/>
  2062. <property name="unsigned" value="true"/>
  2063. </element>
  2064. <element action="add" uuid="d2f51969-071a-43c1-b95f-680166e51783" parent-uuid="98806966-1270-452c-b1ab-cdae6e0016b6" sibling-uuid="cba87bc3-ab11-4af2-bbb8-6830ad23c01a" type="field">
  2065. <property name="name" value="ordine_lavoro_id"/>
  2066. <property name="primary" value="true"/>
  2067. <property name="required" value="true"/>
  2068. <property name="type" value="bigInteger"/>
  2069. <property name="unsigned" value="true"/>
  2070. </element>
  2071. <element action="add" uuid="a67ea0e6-cf8e-4afb-a469-be87c6fb17cf" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" type="field">
  2072. <property name="auto-increment" value="true"/>
  2073. <property name="name" value="id"/>
  2074. <property name="primary" value="true"/>
  2075. <property name="required" value="true"/>
  2076. <property name="type" value="bigInteger"/>
  2077. <property name="unique" value="true"/>
  2078. <property name="unsigned" value="true"/>
  2079. </element>
  2080. <element action="add" uuid="dc5fcea9-5c72-4086-a311-b72bfcfec4b1" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="a67ea0e6-cf8e-4afb-a469-be87c6fb17cf" type="field">
  2081. <property name="name" value="codice"/>
  2082. <property name="type" value="string"/>
  2083. </element>
  2084. <element action="add" uuid="d8272d1d-d423-4e6f-815d-3fb649c3fc1e" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="dc5fcea9-5c72-4086-a311-b72bfcfec4b1" type="field">
  2085. <property name="name" value="nome"/>
  2086. <property name="type" value="string"/>
  2087. </element>
  2088. <element action="add" uuid="a553726d-4bbf-47b7-8061-aca7e126b5eb" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="d8272d1d-d423-4e6f-815d-3fb649c3fc1e" type="field">
  2089. <property name="name" value="descrizione"/>
  2090. <property name="type" value="text"/>
  2091. </element>
  2092. <element action="add" uuid="46172701-6a39-4a9f-a334-f93507b0a960" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="a553726d-4bbf-47b7-8061-aca7e126b5eb" type="field">
  2093. <property name="name" value="periodo"/>
  2094. <property name="type" value="string"/>
  2095. </element>
  2096. <element action="add" uuid="930b1171-9a12-44df-abaa-54c95cd9a5a5" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="46172701-6a39-4a9f-a334-f93507b0a960" type="field">
  2097. <property name="default" value="1"/>
  2098. <property name="name" value="attivo"/>
  2099. <property name="type" value="boolean"/>
  2100. </element>
  2101. <element action="add" uuid="b6196b2c-5609-4d95-8765-9a3fef75f1f3" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="930b1171-9a12-44df-abaa-54c95cd9a5a5" type="field">
  2102. <property name="decimal" value="2"/>
  2103. <property name="name" value="costo_base"/>
  2104. <property name="size" value="10"/>
  2105. <property name="type" value="decimal"/>
  2106. </element>
  2107. <element action="add" uuid="ad26f4dd-95bb-4278-a555-9672ee9bbb99" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="b6196b2c-5609-4d95-8765-9a3fef75f1f3" type="field">
  2108. <property name="name" value="meta"/>
  2109. <property name="type" value="json"/>
  2110. </element>
  2111. <element action="add" uuid="8f53b06a-b7e5-4490-b02d-9a777ae9b33d" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="ad26f4dd-95bb-4278-a555-9672ee9bbb99" type="field">
  2112. <property name="name" value="created_at"/>
  2113. <property name="type" value="timestamp"/>
  2114. </element>
  2115. <element action="add" uuid="4a34b942-0d52-4c5b-9ab4-42cf1990284a" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" sibling-uuid="8f53b06a-b7e5-4490-b02d-9a777ae9b33d" type="field">
  2116. <property name="name" value="updated_at"/>
  2117. <property name="type" value="timestamp"/>
  2118. </element>
  2119. <element action="add" uuid="663ad965-eeea-4054-85e0-0ee4f376c809" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" type="field">
  2120. <property name="auto-increment" value="true"/>
  2121. <property name="name" value="id"/>
  2122. <property name="primary" value="true"/>
  2123. <property name="required" value="true"/>
  2124. <property name="type" value="bigInteger"/>
  2125. <property name="unique" value="true"/>
  2126. <property name="unsigned" value="true"/>
  2127. </element>
  2128. <element action="add" uuid="6648a1e1-dcaf-447e-be6b-91b1e3291dd7" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="663ad965-eeea-4054-85e0-0ee4f376c809" type="field">
  2129. <property name="name" value="contratto_template_id"/>
  2130. <property name="type" value="bigInteger"/>
  2131. <property name="unsigned" value="true"/>
  2132. </element>
  2133. <element action="add" uuid="f7a50105-eaa2-44f0-bbb3-8e85521f9993" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="6648a1e1-dcaf-447e-be6b-91b1e3291dd7" type="field">
  2134. <property name="name" value="titolo"/>
  2135. <property name="type" value="string"/>
  2136. </element>
  2137. <element action="add" uuid="eb2c2957-2e28-44d2-a863-fae44f0c57ac" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="f7a50105-eaa2-44f0-bbb3-8e85521f9993" type="field">
  2138. <property name="name" value="descrizione"/>
  2139. <property name="type" value="text"/>
  2140. </element>
  2141. <element action="add" uuid="dbb7da2b-d5e3-4bd9-8914-42e837e14452" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="eb2c2957-2e28-44d2-a863-fae44f0c57ac" type="field">
  2142. <property name="name" value="tipo_schedulazione"/>
  2143. <property name="type" value="string"/>
  2144. </element>
  2145. <element action="add" uuid="bb7c1237-cf7d-4c74-9ada-7dfcd5556c4d" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="dbb7da2b-d5e3-4bd9-8914-42e837e14452" type="field">
  2146. <property name="name" value="cron"/>
  2147. <property name="type" value="string"/>
  2148. </element>
  2149. <element action="add" uuid="8565fdbc-6300-47d1-95c3-9f551b83e3f7" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="bb7c1237-cf7d-4c74-9ada-7dfcd5556c4d" type="field">
  2150. <property name="name" value="mese"/>
  2151. <property name="type" value="integer"/>
  2152. </element>
  2153. <element action="add" uuid="d3840541-257a-480f-b435-f90387c73a6e" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="8565fdbc-6300-47d1-95c3-9f551b83e3f7" type="field">
  2154. <property name="name" value="giorno"/>
  2155. <property name="type" value="integer"/>
  2156. </element>
  2157. <element action="add" uuid="5542385e-4e90-4e00-a1df-67b922783054" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="d3840541-257a-480f-b435-f90387c73a6e" type="field">
  2158. <property name="name" value="offset_giorni"/>
  2159. <property name="type" value="integer"/>
  2160. </element>
  2161. <element action="add" uuid="6fea7b43-9ac5-46e6-abc2-cc536b3ad9a1" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="5542385e-4e90-4e00-a1df-67b922783054" type="field">
  2162. <property name="name" value="priorita"/>
  2163. <property name="type" value="string"/>
  2164. </element>
  2165. <element action="add" uuid="ce5542d0-0ec5-4060-b96b-ca3c4d24d622" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="6fea7b43-9ac5-46e6-abc2-cc536b3ad9a1" type="field">
  2166. <property name="name" value="tipo_segnalazione"/>
  2167. <property name="type" value="string"/>
  2168. </element>
  2169. <element action="add" uuid="fc2f2ea2-f5c4-4869-8b7a-d5506a9decd7" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="ce5542d0-0ec5-4060-b96b-ca3c4d24d622" type="field">
  2170. <property name="default" value="0"/>
  2171. <property name="name" value="ordine"/>
  2172. <property name="type" value="integer"/>
  2173. </element>
  2174. <element action="add" uuid="1a0ad012-c968-4da2-81df-8c3cf2f028ab" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="fc2f2ea2-f5c4-4869-8b7a-d5506a9decd7" type="field">
  2175. <property name="default" value="1"/>
  2176. <property name="name" value="attivo"/>
  2177. <property name="type" value="boolean"/>
  2178. </element>
  2179. <element action="add" uuid="8cbf484b-40ba-4b06-b460-ee96af0abf77" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="1a0ad012-c968-4da2-81df-8c3cf2f028ab" type="field">
  2180. <property name="name" value="meta"/>
  2181. <property name="type" value="json"/>
  2182. </element>
  2183. <element action="add" uuid="f74ad5f7-3cfc-4f36-8d04-d34e9450761e" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="8cbf484b-40ba-4b06-b460-ee96af0abf77" type="field">
  2184. <property name="name" value="created_at"/>
  2185. <property name="type" value="timestamp"/>
  2186. </element>
  2187. <element action="add" uuid="0dd4eddd-2ba5-4ecd-a172-ed2aed451dde" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" sibling-uuid="f74ad5f7-3cfc-4f36-8d04-d34e9450761e" type="field">
  2188. <property name="name" value="updated_at"/>
  2189. <property name="type" value="timestamp"/>
  2190. </element>
  2191. <element action="add" uuid="95b74961-e2b4-4640-a235-4938034902c5" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" type="field">
  2192. <property name="auto-increment" value="true"/>
  2193. <property name="name" value="id"/>
  2194. <property name="primary" value="true"/>
  2195. <property name="required" value="true"/>
  2196. <property name="type" value="bigInteger"/>
  2197. <property name="unique" value="true"/>
  2198. <property name="unsigned" value="true"/>
  2199. </element>
  2200. <element action="add" uuid="f516123c-2034-4aca-9213-397460593262" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="95b74961-e2b4-4640-a235-4938034902c5" type="field">
  2201. <property name="name" value="contratto_servizio_id"/>
  2202. <property name="type" value="bigInteger"/>
  2203. <property name="unsigned" value="true"/>
  2204. </element>
  2205. <element action="add" uuid="0d340f14-2c61-4b71-b1ac-d01d0ff45adc" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="f516123c-2034-4aca-9213-397460593262" type="field">
  2206. <property name="name" value="contratto_template_todo_id"/>
  2207. <property name="type" value="bigInteger"/>
  2208. <property name="unsigned" value="true"/>
  2209. </element>
  2210. <element action="add" uuid="cc0106de-1acb-4da9-84f3-53c8941c0619" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="0d340f14-2c61-4b71-b1ac-d01d0ff45adc" type="field">
  2211. <property name="name" value="titolo"/>
  2212. <property name="type" value="string"/>
  2213. </element>
  2214. <element action="add" uuid="020ff5ed-d5a6-43a2-a278-ac4a2b764959" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="cc0106de-1acb-4da9-84f3-53c8941c0619" type="field">
  2215. <property name="name" value="descrizione"/>
  2216. <property name="type" value="text"/>
  2217. </element>
  2218. <element action="add" uuid="f8841146-18f3-4906-9553-23f29e60ae3d" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="020ff5ed-d5a6-43a2-a278-ac4a2b764959" type="field">
  2219. <property name="name" value="tipo_schedulazione"/>
  2220. <property name="type" value="string"/>
  2221. </element>
  2222. <element action="add" uuid="83e3ed9d-ec16-42c3-8e29-adb77a03bb79" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="f8841146-18f3-4906-9553-23f29e60ae3d" type="field">
  2223. <property name="name" value="cron"/>
  2224. <property name="type" value="string"/>
  2225. </element>
  2226. <element action="add" uuid="89138272-52f9-4889-a719-456357a0a27f" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="83e3ed9d-ec16-42c3-8e29-adb77a03bb79" type="field">
  2227. <property name="name" value="mese"/>
  2228. <property name="type" value="integer"/>
  2229. </element>
  2230. <element action="add" uuid="e00540bf-6f4a-47ae-9820-da5a5f1d638f" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="89138272-52f9-4889-a719-456357a0a27f" type="field">
  2231. <property name="name" value="giorno"/>
  2232. <property name="type" value="integer"/>
  2233. </element>
  2234. <element action="add" uuid="7746bf3a-6d93-4109-ad6f-0147316b410a" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="e00540bf-6f4a-47ae-9820-da5a5f1d638f" type="field">
  2235. <property name="name" value="offset_giorni"/>
  2236. <property name="type" value="integer"/>
  2237. </element>
  2238. <element action="add" uuid="396211be-d355-4cba-8b01-3fc9433b79a5" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="7746bf3a-6d93-4109-ad6f-0147316b410a" type="field">
  2239. <property name="name" value="data_prossima"/>
  2240. <property name="type" value="date"/>
  2241. </element>
  2242. <element action="add" uuid="6e791de8-605c-47ad-9cee-a91fe1201068" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="396211be-d355-4cba-8b01-3fc9433b79a5" type="field">
  2243. <property name="name" value="data_ultima"/>
  2244. <property name="type" value="date"/>
  2245. </element>
  2246. <element action="add" uuid="1bb1e02d-a910-4d25-807f-c2c980d4e796" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="6e791de8-605c-47ad-9cee-a91fe1201068" type="field">
  2247. <property name="name" value="priorita"/>
  2248. <property name="type" value="string"/>
  2249. </element>
  2250. <element action="add" uuid="a21a2141-f099-452a-99ca-9c58d337b73f" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="1bb1e02d-a910-4d25-807f-c2c980d4e796" type="field">
  2251. <property name="name" value="tipo_segnalazione"/>
  2252. <property name="type" value="string"/>
  2253. </element>
  2254. <element action="add" uuid="7a97d379-d5bd-4f9d-946c-6ae1c90ba703" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="a21a2141-f099-452a-99ca-9c58d337b73f" type="field">
  2255. <property name="default" value="0"/>
  2256. <property name="name" value="ordine"/>
  2257. <property name="type" value="integer"/>
  2258. </element>
  2259. <element action="add" uuid="186a4b94-28db-416d-85b6-c29eeeb39485" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="7a97d379-d5bd-4f9d-946c-6ae1c90ba703" type="field">
  2260. <property name="default" value="1"/>
  2261. <property name="name" value="attivo"/>
  2262. <property name="type" value="boolean"/>
  2263. </element>
  2264. <element action="add" uuid="a331b115-cc85-4785-961a-a2d38cab807c" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="186a4b94-28db-416d-85b6-c29eeeb39485" type="field">
  2265. <property name="name" value="meta"/>
  2266. <property name="type" value="json"/>
  2267. </element>
  2268. <element action="add" uuid="31e43e01-782b-4d66-a47a-3c582ac65491" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="a331b115-cc85-4785-961a-a2d38cab807c" type="field">
  2269. <property name="name" value="created_at"/>
  2270. <property name="type" value="timestamp"/>
  2271. </element>
  2272. <element action="add" uuid="c1aacd09-e455-4e64-b398-8bd590da01ad" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" sibling-uuid="31e43e01-782b-4d66-a47a-3c582ac65491" type="field">
  2273. <property name="name" value="updated_at"/>
  2274. <property name="type" value="timestamp"/>
  2275. </element>
  2276. <element action="add" uuid="c594c8bc-e6be-4b44-b28a-8ddfe4893c97" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" type="field">
  2277. <property name="auto-increment" value="true"/>
  2278. <property name="name" value="id"/>
  2279. <property name="primary" value="true"/>
  2280. <property name="required" value="true"/>
  2281. <property name="type" value="bigInteger"/>
  2282. <property name="unique" value="true"/>
  2283. <property name="unsigned" value="true"/>
  2284. </element>
  2285. <element action="add" uuid="655f5603-7405-4da7-b945-492a74b82232" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="c594c8bc-e6be-4b44-b28a-8ddfe4893c97" type="field">
  2286. <property name="name" value="contratto_template_id"/>
  2287. <property name="type" value="bigInteger"/>
  2288. <property name="unsigned" value="true"/>
  2289. </element>
  2290. <element action="add" uuid="891eb65f-5e50-47a5-8d6a-48dd6f5a76ff" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="655f5603-7405-4da7-b945-492a74b82232" type="field">
  2291. <property name="name" value="prodotto_id"/>
  2292. <property name="type" value="bigInteger"/>
  2293. <property name="unsigned" value="true"/>
  2294. </element>
  2295. <element action="add" uuid="674f04ea-e6bd-4015-b80d-531ef3f4092d" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="891eb65f-5e50-47a5-8d6a-48dd6f5a76ff" type="field">
  2296. <property name="decimal" value="2"/>
  2297. <property name="name" value="quantita"/>
  2298. <property name="size" value="10"/>
  2299. <property name="type" value="decimal"/>
  2300. </element>
  2301. <element action="add" uuid="8a770361-3ac1-4f27-a2b5-0f7375fea6c4" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="674f04ea-e6bd-4015-b80d-531ef3f4092d" type="field">
  2302. <property name="name" value="unita_misura"/>
  2303. <property name="type" value="string"/>
  2304. </element>
  2305. <element action="add" uuid="a0418b73-b1f5-444c-b546-e7fe1216b4a9" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="8a770361-3ac1-4f27-a2b5-0f7375fea6c4" type="field">
  2306. <property name="decimal" value="2"/>
  2307. <property name="name" value="prezzo_unitario"/>
  2308. <property name="size" value="10"/>
  2309. <property name="type" value="decimal"/>
  2310. </element>
  2311. <element action="add" uuid="cb3ffa97-9aa1-4e33-9de6-f2dc5b69347e" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="a0418b73-b1f5-444c-b546-e7fe1216b4a9" type="field">
  2312. <property name="name" value="periodo"/>
  2313. <property name="type" value="string"/>
  2314. </element>
  2315. <element action="add" uuid="afecd4d2-26d4-4639-a390-be8b02023ba1" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="cb3ffa97-9aa1-4e33-9de6-f2dc5b69347e" type="field">
  2316. <property name="name" value="note"/>
  2317. <property name="type" value="text"/>
  2318. </element>
  2319. <element action="add" uuid="509ec89f-2c7c-49b4-9083-0d1304760ef1" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="afecd4d2-26d4-4639-a390-be8b02023ba1" type="field">
  2320. <property name="default" value="0"/>
  2321. <property name="name" value="ordine"/>
  2322. <property name="type" value="integer"/>
  2323. </element>
  2324. <element action="add" uuid="0618fd13-368f-46d4-9c9f-cd649579384b" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="509ec89f-2c7c-49b4-9083-0d1304760ef1" type="field">
  2325. <property name="name" value="created_at"/>
  2326. <property name="type" value="timestamp"/>
  2327. </element>
  2328. <element action="add" uuid="9d5c1e64-5a11-4dd5-bbda-7287d5c91307" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" sibling-uuid="0618fd13-368f-46d4-9c9f-cd649579384b" type="field">
  2329. <property name="name" value="updated_at"/>
  2330. <property name="type" value="timestamp"/>
  2331. </element>
  2332. <element action="add" uuid="e39c970f-e64a-44c5-ad58-1701397cd924" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" type="field">
  2333. <property name="auto-increment" value="true"/>
  2334. <property name="name" value="id"/>
  2335. <property name="primary" value="true"/>
  2336. <property name="required" value="true"/>
  2337. <property name="type" value="bigInteger"/>
  2338. <property name="unique" value="true"/>
  2339. <property name="unsigned" value="true"/>
  2340. </element>
  2341. <element action="add" uuid="0a5b2558-c482-448c-bbd4-438a5ce8a905" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="e39c970f-e64a-44c5-ad58-1701397cd924" type="field">
  2342. <property name="name" value="contratto_servizio_id"/>
  2343. <property name="type" value="bigInteger"/>
  2344. <property name="unsigned" value="true"/>
  2345. </element>
  2346. <element action="add" uuid="1365f409-2ba4-46f1-8781-bff463c01a2c" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="0a5b2558-c482-448c-bbd4-438a5ce8a905" type="field">
  2347. <property name="name" value="prodotto_id"/>
  2348. <property name="type" value="bigInteger"/>
  2349. <property name="unsigned" value="true"/>
  2350. </element>
  2351. <element action="add" uuid="1b2edca7-2ad1-47de-971e-5c1b82e7a49d" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="1365f409-2ba4-46f1-8781-bff463c01a2c" type="field">
  2352. <property name="decimal" value="2"/>
  2353. <property name="name" value="quantita"/>
  2354. <property name="size" value="10"/>
  2355. <property name="type" value="decimal"/>
  2356. </element>
  2357. <element action="add" uuid="d92bbf06-a497-4525-afd5-a550a99f8ef3" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="1b2edca7-2ad1-47de-971e-5c1b82e7a49d" type="field">
  2358. <property name="name" value="unita_misura"/>
  2359. <property name="type" value="string"/>
  2360. </element>
  2361. <element action="add" uuid="8db2eb16-6b67-402e-bd36-c9e662a0f5a7" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="d92bbf06-a497-4525-afd5-a550a99f8ef3" type="field">
  2362. <property name="decimal" value="2"/>
  2363. <property name="name" value="prezzo_unitario"/>
  2364. <property name="size" value="10"/>
  2365. <property name="type" value="decimal"/>
  2366. </element>
  2367. <element action="add" uuid="ff878a32-4891-4622-8bd1-0c053da212ff" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="8db2eb16-6b67-402e-bd36-c9e662a0f5a7" type="field">
  2368. <property name="name" value="periodo"/>
  2369. <property name="type" value="string"/>
  2370. </element>
  2371. <element action="add" uuid="73662125-5f5e-4918-bade-f5428ab2def4" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="ff878a32-4891-4622-8bd1-0c053da212ff" type="field">
  2372. <property name="name" value="note"/>
  2373. <property name="type" value="text"/>
  2374. </element>
  2375. <element action="add" uuid="953a6161-5754-4c09-8248-bd4f63383948" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="73662125-5f5e-4918-bade-f5428ab2def4" type="field">
  2376. <property name="default" value="0"/>
  2377. <property name="name" value="ordine"/>
  2378. <property name="type" value="integer"/>
  2379. </element>
  2380. <element action="add" uuid="d01c008b-3dd8-4f7d-87a5-5b74dc328f5c" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="953a6161-5754-4c09-8248-bd4f63383948" type="field">
  2381. <property name="name" value="created_at"/>
  2382. <property name="type" value="timestamp"/>
  2383. </element>
  2384. <element action="add" uuid="23bc72d4-6532-4422-b813-f4689c8b34ad" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="d01c008b-3dd8-4f7d-87a5-5b74dc328f5c" type="field">
  2385. <property name="name" value="updated_at"/>
  2386. <property name="type" value="timestamp"/>
  2387. </element>
  2388. <element action="add" uuid="82e57f04-7b3a-4ec9-9cb1-8ab821e49024" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" type="field">
  2389. <property name="auto-increment" value="true"/>
  2390. <property name="name" value="id"/>
  2391. <property name="primary" value="true"/>
  2392. <property name="required" value="true"/>
  2393. <property name="type" value="bigInteger"/>
  2394. <property name="unique" value="true"/>
  2395. <property name="unsigned" value="true"/>
  2396. </element>
  2397. <element action="add" uuid="ee767607-dea9-4828-bf9f-780b10ab3127" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="82e57f04-7b3a-4ec9-9cb1-8ab821e49024" type="field">
  2398. <property name="name" value="codice"/>
  2399. <property name="type" value="string"/>
  2400. </element>
  2401. <element action="add" uuid="fe6bedd5-c44a-405d-af80-868f871e09fe" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="ee767607-dea9-4828-bf9f-780b10ab3127" type="field">
  2402. <property name="decimal" value="2"/>
  2403. <property name="name" value="sconto_percentuale"/>
  2404. <property name="size" value="10"/>
  2405. <property name="type" value="decimal"/>
  2406. </element>
  2407. <element action="add" uuid="5ffde063-aea1-49de-a6b4-c8b710e11c5d" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="fe6bedd5-c44a-405d-af80-868f871e09fe" type="field">
  2408. <property name="default" value="1"/>
  2409. <property name="name" value="attivo"/>
  2410. <property name="type" value="boolean"/>
  2411. </element>
  2412. <element action="add" uuid="fba28412-e36c-4bb9-bbbc-a536cf12ae20" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="5ffde063-aea1-49de-a6b4-c8b710e11c5d" type="field">
  2413. <property name="name" value="valido_dal"/>
  2414. <property name="type" value="date"/>
  2415. </element>
  2416. <element action="add" uuid="6b62a9cc-8f2b-45cb-9396-b3a73e3201be" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="fba28412-e36c-4bb9-bbbc-a536cf12ae20" type="field">
  2417. <property name="name" value="valido_al"/>
  2418. <property name="type" value="date"/>
  2419. </element>
  2420. <element action="add" uuid="b6e44e7c-fe55-4914-9772-691b14832075" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="6b62a9cc-8f2b-45cb-9396-b3a73e3201be" type="field">
  2421. <property name="name" value="usi_max"/>
  2422. <property name="type" value="integer"/>
  2423. </element>
  2424. <element action="add" uuid="866015d2-09d0-4395-891c-a6c66cd27230" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="b6e44e7c-fe55-4914-9772-691b14832075" type="field">
  2425. <property name="name" value="usi_count"/>
  2426. <property name="type" value="integer"/>
  2427. </element>
  2428. <element action="add" uuid="0945421e-d222-4ba8-aa95-762a58678b7e" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="866015d2-09d0-4395-891c-a6c66cd27230" type="field">
  2429. <property name="name" value="note"/>
  2430. <property name="type" value="text"/>
  2431. </element>
  2432. <element action="add" uuid="108d2bec-f727-41af-9a47-f1d29b0be843" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="0945421e-d222-4ba8-aa95-762a58678b7e" type="field">
  2433. <property name="name" value="created_at"/>
  2434. <property name="type" value="timestamp"/>
  2435. </element>
  2436. <element action="add" uuid="b433b376-1050-49b0-9c1d-86f0b4aef896" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" sibling-uuid="108d2bec-f727-41af-9a47-f1d29b0be843" type="field">
  2437. <property name="name" value="updated_at"/>
  2438. <property name="type" value="timestamp"/>
  2439. </element>
  2440. <element action="add" uuid="2ded0962-e47f-4bee-94d0-364923a9aace" parent-uuid="273deed0-9f6e-4aca-b64b-22a657db2a21" type="field">
  2441. <property name="name" value="prodotto_id"/>
  2442. <property name="primary" value="true"/>
  2443. <property name="required" value="true"/>
  2444. <property name="type" value="bigInteger"/>
  2445. <property name="unsigned" value="true"/>
  2446. </element>
  2447. <element action="add" uuid="cbfc3db8-20fd-4fce-8dff-402604dd3d20" parent-uuid="273deed0-9f6e-4aca-b64b-22a657db2a21" sibling-uuid="2ded0962-e47f-4bee-94d0-364923a9aace" type="field">
  2448. <property name="name" value="promo_code_id"/>
  2449. <property name="primary" value="true"/>
  2450. <property name="required" value="true"/>
  2451. <property name="type" value="bigInteger"/>
  2452. <property name="unsigned" value="true"/>
  2453. </element>
  2454. <element action="add" uuid="f948a486-f887-46c0-96be-87ce5f4c6945" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" type="field">
  2455. <property name="auto-increment" value="true"/>
  2456. <property name="name" value="id"/>
  2457. <property name="primary" value="true"/>
  2458. <property name="required" value="true"/>
  2459. <property name="type" value="bigInteger"/>
  2460. <property name="unique" value="true"/>
  2461. <property name="unsigned" value="true"/>
  2462. </element>
  2463. <element action="add" uuid="bc680727-da9a-43e4-8291-067fcdb491db" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="f948a486-f887-46c0-96be-87ce5f4c6945" type="field">
  2464. <property name="name" value="prodotto_id"/>
  2465. <property name="type" value="bigInteger"/>
  2466. <property name="unsigned" value="true"/>
  2467. </element>
  2468. <element action="add" uuid="c4101336-5ef2-4fe8-a222-ba16450e4317" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="bc680727-da9a-43e4-8291-067fcdb491db" type="field">
  2469. <property name="name" value="promo_code_id"/>
  2470. <property name="type" value="bigInteger"/>
  2471. <property name="unsigned" value="true"/>
  2472. </element>
  2473. <element action="add" uuid="43d5b052-1494-4bd6-97ac-391c515d37f5" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="c4101336-5ef2-4fe8-a222-ba16450e4317" type="field">
  2474. <property name="name" value="segnalazione_id"/>
  2475. <property name="type" value="bigInteger"/>
  2476. <property name="unsigned" value="true"/>
  2477. </element>
  2478. <element action="add" uuid="27d91a86-9d2f-4311-a923-bd97abde2241" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="43d5b052-1494-4bd6-97ac-391c515d37f5" type="field">
  2479. <property name="name" value="nome"/>
  2480. <property name="type" value="string"/>
  2481. </element>
  2482. <element action="add" uuid="4ad66228-0077-4bed-a371-b6784f4e28eb" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="27d91a86-9d2f-4311-a923-bd97abde2241" type="field">
  2483. <property name="name" value="email"/>
  2484. <property name="type" value="string"/>
  2485. </element>
  2486. <element action="add" uuid="0cbd8803-1513-4000-ac24-428a9b217ea9" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="4ad66228-0077-4bed-a371-b6784f4e28eb" type="field">
  2487. <property name="name" value="telefono"/>
  2488. <property name="type" value="string"/>
  2489. </element>
  2490. <element action="add" uuid="adcbaf5e-7e09-422b-a6ce-4016c7bab0de" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="0cbd8803-1513-4000-ac24-428a9b217ea9" type="field">
  2491. <property name="name" value="modalita"/>
  2492. <property name="type" value="string"/>
  2493. </element>
  2494. <element action="add" uuid="6d3fd49c-d838-47c5-b212-381b9a2a920e" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="adcbaf5e-7e09-422b-a6ce-4016c7bab0de" type="field">
  2495. <property name="decimal" value="2"/>
  2496. <property name="name" value="prezzo_servizio"/>
  2497. <property name="size" value="10"/>
  2498. <property name="type" value="decimal"/>
  2499. </element>
  2500. <element action="add" uuid="b993cd59-1578-4198-bca0-d48c3fa882a1" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="6d3fd49c-d838-47c5-b212-381b9a2a920e" type="field">
  2501. <property name="decimal" value="2"/>
  2502. <property name="name" value="costo_domicilio"/>
  2503. <property name="size" value="10"/>
  2504. <property name="type" value="decimal"/>
  2505. </element>
  2506. <element action="add" uuid="6874d156-0200-4215-80c3-2d6a7719eda3" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="b993cd59-1578-4198-bca0-d48c3fa882a1" type="field">
  2507. <property name="decimal" value="2"/>
  2508. <property name="name" value="sconto"/>
  2509. <property name="size" value="10"/>
  2510. <property name="type" value="decimal"/>
  2511. </element>
  2512. <element action="add" uuid="88cf3d8e-2f2c-4c58-9c13-da2d462b4d16" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="6874d156-0200-4215-80c3-2d6a7719eda3" type="field">
  2513. <property name="decimal" value="2"/>
  2514. <property name="name" value="totale"/>
  2515. <property name="size" value="10"/>
  2516. <property name="type" value="decimal"/>
  2517. </element>
  2518. <element action="add" uuid="e66150ce-7775-4426-959a-00e799f75568" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="88cf3d8e-2f2c-4c58-9c13-da2d462b4d16" type="field">
  2519. <property name="name" value="provider"/>
  2520. <property name="type" value="string"/>
  2521. </element>
  2522. <element action="add" uuid="463c8589-2ec6-433c-b78e-f173cf9787b7" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="e66150ce-7775-4426-959a-00e799f75568" type="field">
  2523. <property name="name" value="payment_status"/>
  2524. <property name="type" value="string"/>
  2525. </element>
  2526. <element action="add" uuid="4a75c4b5-5391-4088-a88d-14beadfb0914" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="463c8589-2ec6-433c-b78e-f173cf9787b7" type="field">
  2527. <property name="name" value="condizioni_accettate_at"/>
  2528. <property name="type" value="dateTime"/>
  2529. </element>
  2530. <element action="add" uuid="3c187398-c6bd-42b8-a22c-0674e1579405" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="4a75c4b5-5391-4088-a88d-14beadfb0914" type="field">
  2531. <property name="name" value="token"/>
  2532. <property name="type" value="string"/>
  2533. </element>
  2534. <element action="add" uuid="9b9bd179-d249-4d73-a35d-1811619012df" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="3c187398-c6bd-42b8-a22c-0674e1579405" type="field">
  2535. <property name="name" value="meta"/>
  2536. <property name="type" value="json"/>
  2537. </element>
  2538. <element action="add" uuid="ce0d688a-8a3b-4b93-a5b1-34c449881314" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="9b9bd179-d249-4d73-a35d-1811619012df" type="field">
  2539. <property name="name" value="codice_fiscale"/>
  2540. <property name="type" value="string"/>
  2541. </element>
  2542. <element action="add" uuid="43f589c6-38d2-4b3d-a009-daf87264a3f9" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="ce0d688a-8a3b-4b93-a5b1-34c449881314" type="field">
  2543. <property name="name" value="indirizzo"/>
  2544. <property name="type" value="string"/>
  2545. </element>
  2546. <element action="add" uuid="88543171-e695-4be3-acfe-8955f90ef825" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="43f589c6-38d2-4b3d-a009-daf87264a3f9" type="field">
  2547. <property name="name" value="note_cliente"/>
  2548. <property name="type" value="text"/>
  2549. </element>
  2550. <element action="add" uuid="d992c256-dd60-40f7-8032-01c55e6b759b" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="88543171-e695-4be3-acfe-8955f90ef825" type="field">
  2551. <property name="name" value="note_operatore"/>
  2552. <property name="type" value="string"/>
  2553. </element>
  2554. <element action="add" uuid="af995e1a-0223-486e-98d0-85d429fa3d9b" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="d992c256-dd60-40f7-8032-01c55e6b759b" type="field">
  2555. <property name="name" value="created_at"/>
  2556. <property name="type" value="timestamp"/>
  2557. </element>
  2558. <element action="add" uuid="fd6b9919-0139-45f2-b4e2-f3cc84321316" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" sibling-uuid="af995e1a-0223-486e-98d0-85d429fa3d9b" type="field">
  2559. <property name="name" value="updated_at"/>
  2560. <property name="type" value="timestamp"/>
  2561. </element>
  2562. <element action="add" uuid="87bde1ea-7640-400e-a7d1-0462489ae11d" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" type="field">
  2563. <property name="auto-increment" value="true"/>
  2564. <property name="name" value="id"/>
  2565. <property name="primary" value="true"/>
  2566. <property name="required" value="true"/>
  2567. <property name="type" value="bigInteger"/>
  2568. <property name="unique" value="true"/>
  2569. <property name="unsigned" value="true"/>
  2570. </element>
  2571. <element action="add" uuid="25811152-45de-471d-8564-cc81ef9786e8" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="87bde1ea-7640-400e-a7d1-0462489ae11d" type="field">
  2572. <property name="name" value="prodotto_id"/>
  2573. <property name="type" value="bigInteger"/>
  2574. <property name="unsigned" value="true"/>
  2575. </element>
  2576. <element action="add" uuid="a603f5de-b1a1-4f62-bb8c-f4f1cd7c3f50" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="25811152-45de-471d-8564-cc81ef9786e8" type="field">
  2577. <property name="name" value="titolo"/>
  2578. <property name="type" value="string"/>
  2579. </element>
  2580. <element action="add" uuid="985444a2-483b-4a8c-a899-1479af35314b" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="a603f5de-b1a1-4f62-bb8c-f4f1cd7c3f50" type="field">
  2581. <property name="name" value="descrizione"/>
  2582. <property name="type" value="text"/>
  2583. </element>
  2584. <element action="add" uuid="95190e25-ec45-4882-b288-e38a0db8ed74" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="985444a2-483b-4a8c-a899-1479af35314b" type="field">
  2585. <property name="default" value="0"/>
  2586. <property name="name" value="ordine"/>
  2587. <property name="type" value="integer"/>
  2588. </element>
  2589. <element action="add" uuid="d64d14fd-6ac7-40bc-9f92-3139b413f803" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="95190e25-ec45-4882-b288-e38a0db8ed74" type="field">
  2590. <property name="default" value="1"/>
  2591. <property name="name" value="attivo"/>
  2592. <property name="type" value="boolean"/>
  2593. </element>
  2594. <element action="add" uuid="07db0aa3-81fe-4d89-a496-04842f0d087b" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="d64d14fd-6ac7-40bc-9f92-3139b413f803" type="field">
  2595. <property name="default" value="0"/>
  2596. <property name="name" value="obbligatorio"/>
  2597. <property name="type" value="boolean"/>
  2598. </element>
  2599. <element action="add" uuid="af4eba12-2a21-4023-bd8e-da0d4b46e265" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="07db0aa3-81fe-4d89-a496-04842f0d087b" type="field">
  2600. <property name="name" value="meta"/>
  2601. <property name="type" value="json"/>
  2602. </element>
  2603. <element action="add" uuid="f6354bf0-0cf6-43e5-9df8-bcf6c63ed4bd" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="af4eba12-2a21-4023-bd8e-da0d4b46e265" type="field">
  2604. <property name="default" value="1"/>
  2605. <property name="name" value="public"/>
  2606. <property name="type" value="boolean"/>
  2607. </element>
  2608. <element action="add" uuid="c0946141-13ab-487a-b958-6faee53e5b08" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="f6354bf0-0cf6-43e5-9df8-bcf6c63ed4bd" type="field">
  2609. <property name="name" value="created_at"/>
  2610. <property name="type" value="timestamp"/>
  2611. </element>
  2612. <element action="add" uuid="27d28691-d311-4d90-9e47-6a56544091dc" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" sibling-uuid="c0946141-13ab-487a-b958-6faee53e5b08" type="field">
  2613. <property name="name" value="updated_at"/>
  2614. <property name="type" value="timestamp"/>
  2615. </element>
  2616. <element action="add" uuid="1df0218e-6128-4831-9b3b-2eac58ffa182" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" type="field">
  2617. <property name="auto-increment" value="true"/>
  2618. <property name="name" value="id"/>
  2619. <property name="primary" value="true"/>
  2620. <property name="required" value="true"/>
  2621. <property name="type" value="bigInteger"/>
  2622. <property name="unique" value="true"/>
  2623. <property name="unsigned" value="true"/>
  2624. </element>
  2625. <element action="add" uuid="d14a0c59-6b66-4328-bd55-de2d7a0a27a6" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="1df0218e-6128-4831-9b3b-2eac58ffa182" type="field">
  2626. <property name="name" value="segnalazione_id"/>
  2627. <property name="type" value="bigInteger"/>
  2628. <property name="unsigned" value="true"/>
  2629. </element>
  2630. <element action="add" uuid="a48df42a-6791-41b7-92a8-0b02e7f25ca5" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="d14a0c59-6b66-4328-bd55-de2d7a0a27a6" type="field">
  2631. <property name="name" value="prodotto_todo_id"/>
  2632. <property name="type" value="bigInteger"/>
  2633. <property name="unsigned" value="true"/>
  2634. </element>
  2635. <element action="add" uuid="fdee23c2-9175-4495-99b4-631761149856" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="a48df42a-6791-41b7-92a8-0b02e7f25ca5" type="field">
  2636. <property name="name" value="completato_da_id"/>
  2637. <property name="type" value="bigInteger"/>
  2638. <property name="unsigned" value="true"/>
  2639. </element>
  2640. <element action="add" uuid="cb9d1238-a216-4d6d-b75b-890b532e6073" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="fdee23c2-9175-4495-99b4-631761149856" type="field">
  2641. <property name="name" value="titolo"/>
  2642. <property name="type" value="string"/>
  2643. </element>
  2644. <element action="add" uuid="192661a9-3d18-4eda-840c-e03991eeb59f" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="cb9d1238-a216-4d6d-b75b-890b532e6073" type="field">
  2645. <property name="name" value="descrizione"/>
  2646. <property name="type" value="text"/>
  2647. </element>
  2648. <element action="add" uuid="50402be7-5614-49a1-9da9-ab614274f510" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="192661a9-3d18-4eda-840c-e03991eeb59f" type="field">
  2649. <property name="default" value="0"/>
  2650. <property name="name" value="ordine"/>
  2651. <property name="type" value="integer"/>
  2652. </element>
  2653. <element action="add" uuid="4cafcf9d-7b00-4834-aa70-cdec0fd04dea" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="50402be7-5614-49a1-9da9-ab614274f510" type="field">
  2654. <property name="default" value="0"/>
  2655. <property name="name" value="obbligatorio"/>
  2656. <property name="type" value="boolean"/>
  2657. </element>
  2658. <element action="add" uuid="49c1f168-39e6-4c8a-974f-e8897ce76e15" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="4cafcf9d-7b00-4834-aa70-cdec0fd04dea" type="field">
  2659. <property name="name" value="completato_at"/>
  2660. <property name="type" value="dateTime"/>
  2661. </element>
  2662. <element action="add" uuid="2c3de855-3f52-411b-8490-0c4367d21605" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="49c1f168-39e6-4c8a-974f-e8897ce76e15" type="field">
  2663. <property name="name" value="meta"/>
  2664. <property name="type" value="json"/>
  2665. </element>
  2666. <element action="add" uuid="67bb376a-567c-486e-a285-d1a52b515c00" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="2c3de855-3f52-411b-8490-0c4367d21605" type="field">
  2667. <property name="default" value="1"/>
  2668. <property name="name" value="public"/>
  2669. <property name="type" value="boolean"/>
  2670. </element>
  2671. <element action="add" uuid="eeb4f415-6d04-4886-8c4a-b24732fd87ba" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="67bb376a-567c-486e-a285-d1a52b515c00" type="field">
  2672. <property name="name" value="created_at"/>
  2673. <property name="type" value="timestamp"/>
  2674. </element>
  2675. <element action="add" uuid="b8abd05e-4682-4f4e-ad50-cc3980955c82" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" sibling-uuid="eeb4f415-6d04-4886-8c4a-b24732fd87ba" type="field">
  2676. <property name="name" value="updated_at"/>
  2677. <property name="type" value="timestamp"/>
  2678. </element>
  2679. <element action="add" uuid="8399970c-2d0b-403e-996b-e86248cb3bc5" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2680. <property name="from" value="\App\Models\User"/>
  2681. <property name="inverse-alias" value="comune"/>
  2682. <property name="many-inverse" value="false"/>
  2683. <property name="many-owner" value="true"/>
  2684. <property name="onDelete" value="set null"/>
  2685. <property name="owner-alias" value="users"/>
  2686. <property name="to" value="\App\Models\Comune"/>
  2687. </element>
  2688. <element action="add" uuid="787d90ec-5676-4749-9b36-cea959c6793b" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2689. <property name="from" value="\App\Models\User"/>
  2690. <property name="inverse-alias" value="azienda"/>
  2691. <property name="many-inverse" value="false"/>
  2692. <property name="many-owner" value="true"/>
  2693. <property name="onDelete" value="set null"/>
  2694. <property name="owner-alias" value="utentiAzienda"/>
  2695. <property name="to" value="\App\Models\User"/>
  2696. </element>
  2697. <element action="add" uuid="2fa65d03-8ddb-413f-8064-798860928786" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2698. <property name="from" value="\App\Models\Segnalazione"/>
  2699. <property name="inverse-alias" value="assegnataA"/>
  2700. <property name="many-inverse" value="false"/>
  2701. <property name="many-owner" value="true"/>
  2702. <property name="onDelete" value="set null"/>
  2703. <property name="owner-alias" value="segnalazioniAssegnate"/>
  2704. <property name="to" value="\App\Models\User"/>
  2705. </element>
  2706. <element action="add" uuid="6faa9818-b5b6-4eab-96b6-6eaf56d1de79" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2707. <property name="from" value="\App\Models\Segnalazione"/>
  2708. <property name="inverse-alias" value="user"/>
  2709. <property name="many-inverse" value="false"/>
  2710. <property name="many-owner" value="true"/>
  2711. <property name="onDelete" value="set null"/>
  2712. <property name="owner-alias" value="segnalazioni"/>
  2713. <property name="to" value="\App\Models\User"/>
  2714. </element>
  2715. <element action="add" uuid="d586b98c-7daa-49d4-ada1-8c2c9223fb66" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2716. <property name="from" value="\App\Models\Segnalazione"/>
  2717. <property name="inverse-alias" value="azienda"/>
  2718. <property name="many-inverse" value="false"/>
  2719. <property name="many-owner" value="true"/>
  2720. <property name="onDelete" value="set null"/>
  2721. <property name="owner-alias" value="segnalazioniAzienda"/>
  2722. <property name="to" value="\App\Models\User"/>
  2723. </element>
  2724. <element action="add" uuid="5f4ca39e-40ba-4157-bf4c-603b7469b044" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2725. <property name="from" value="\App\Models\Segnalazione"/>
  2726. <property name="inverse-alias" value="contrattoServizio"/>
  2727. <property name="many-inverse" value="false"/>
  2728. <property name="many-owner" value="true"/>
  2729. <property name="onDelete" value="set null"/>
  2730. <property name="owner-alias" value="segnalazioni"/>
  2731. <property name="to" value="\App\Models\ContrattoServizio"/>
  2732. </element>
  2733. <element action="add" uuid="86aded2a-2e4e-4fc2-8702-5191cd073056" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2734. <property name="from" value="\App\Models\Segnalazione"/>
  2735. <property name="inverse-alias" value="ordineLavoro"/>
  2736. <property name="many-inverse" value="false"/>
  2737. <property name="many-owner" value="true"/>
  2738. <property name="onDelete" value="set null"/>
  2739. <property name="owner-alias" value="segnalazioni"/>
  2740. <property name="to" value="\App\Models\OrdineLavoro"/>
  2741. </element>
  2742. <element action="add" uuid="faaed052-f628-4ae7-8f52-b3614fad893e" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2743. <property name="from" value="\App\Models\Segnalazione"/>
  2744. <property name="inverse-alias" value="contrattoServizioTodo"/>
  2745. <property name="many-inverse" value="false"/>
  2746. <property name="many-owner" value="true"/>
  2747. <property name="onDelete" value="set null"/>
  2748. <property name="owner-alias" value="segnalazioni"/>
  2749. <property name="to" value="\App\Models\ContrattoServizioTodo"/>
  2750. </element>
  2751. <element action="add" uuid="41971b51-8523-4c42-83a6-4ea29a618e4c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2752. <property name="from" value="\App\Models\Segnalazione"/>
  2753. <property name="inverse-alias" value="acquistoServizio"/>
  2754. <property name="many-inverse" value="false"/>
  2755. <property name="many-owner" value="true"/>
  2756. <property name="onDelete" value="set null"/>
  2757. <property name="owner-alias" value="segnalazioni"/>
  2758. <property name="to" value="\App\Models\AcquistoServizio"/>
  2759. </element>
  2760. <element action="add" uuid="3d14fd5b-7f78-49e4-831f-a98aa484a94f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2761. <property name="from" value="\App\Models\Segnalazione"/>
  2762. <property name="inverse-alias" value="prodotto"/>
  2763. <property name="many-inverse" value="false"/>
  2764. <property name="many-owner" value="true"/>
  2765. <property name="onDelete" value="set null"/>
  2766. <property name="owner-alias" value="segnalazioni"/>
  2767. <property name="to" value="\App\Models\Prodotto"/>
  2768. </element>
  2769. <element action="add" uuid="9d4fa7d0-23be-4bb2-99bd-67797c3244c0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2770. <property name="from" value="\App\Models\Annotazione"/>
  2771. <property name="inverse-alias" value="segnalazione"/>
  2772. <property name="many-inverse" value="false"/>
  2773. <property name="many-owner" value="true"/>
  2774. <property name="onDelete" value="cascade"/>
  2775. <property name="owner-alias" value="annotazioni"/>
  2776. <property name="to" value="\App\Models\Segnalazione"/>
  2777. </element>
  2778. <element action="add" uuid="f5d31adf-5971-42f7-90bf-41571fe64218" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2779. <property name="from" value="\App\Models\Annotazione"/>
  2780. <property name="inverse-alias" value="user"/>
  2781. <property name="many-inverse" value="false"/>
  2782. <property name="many-owner" value="true"/>
  2783. <property name="onDelete" value="set null"/>
  2784. <property name="owner-alias" value="annotazioni"/>
  2785. <property name="to" value="\App\Models\User"/>
  2786. </element>
  2787. <element action="add" uuid="719929c1-e0fe-4feb-950a-ba417c35a60c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2788. <property name="from" value="\App\Models\AllegatoAnnotazione"/>
  2789. <property name="inverse-alias" value="annotazione"/>
  2790. <property name="many-inverse" value="false"/>
  2791. <property name="many-owner" value="true"/>
  2792. <property name="onDelete" value="cascade"/>
  2793. <property name="owner-alias" value="allegatiAnnotazione"/>
  2794. <property name="to" value="\App\Models\Annotazione"/>
  2795. </element>
  2796. <element action="add" uuid="345b5351-9f8a-4d02-9192-1bb27645761d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2797. <property name="from" value="\App\Models\Provincia"/>
  2798. <property name="inverse-alias" value="nazione"/>
  2799. <property name="many-inverse" value="false"/>
  2800. <property name="many-owner" value="true"/>
  2801. <property name="onDelete" value="set null"/>
  2802. <property name="owner-alias" value="provincie"/>
  2803. <property name="to" value="\App\Models\Nazione"/>
  2804. </element>
  2805. <element action="add" uuid="4399e41c-477e-44d7-91db-b1cd4614f294" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2806. <property name="from" value="\App\Models\Comune"/>
  2807. <property name="inverse-alias" value="provincia"/>
  2808. <property name="many-inverse" value="false"/>
  2809. <property name="many-owner" value="true"/>
  2810. <property name="owner-alias" value="comuni"/>
  2811. <property name="to" value="\App\Models\Provincia"/>
  2812. </element>
  2813. <element action="add" uuid="299d534d-b5ef-411c-b66b-f4adaaa3b4f1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2814. <property name="from" value="\App\Models\Comune"/>
  2815. <property name="inverse-alias" value="nazione"/>
  2816. <property name="many-inverse" value="false"/>
  2817. <property name="many-owner" value="true"/>
  2818. <property name="onDelete" value="set null"/>
  2819. <property name="owner-alias" value="comuni"/>
  2820. <property name="to" value="\App\Models\Nazione"/>
  2821. </element>
  2822. <element action="add" uuid="3842d2b3-d137-47bc-9a10-14b7a860c153" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2823. <property name="from" value="\App\Models\ContrattoServizio"/>
  2824. <property name="inverse-alias" value="user"/>
  2825. <property name="many-inverse" value="false"/>
  2826. <property name="many-owner" value="true"/>
  2827. <property name="onDelete" value="set null"/>
  2828. <property name="owner-alias" value="contrattiServizio"/>
  2829. <property name="to" value="\App\Models\User"/>
  2830. </element>
  2831. <element action="add" uuid="4e4e7f6b-b25f-4a8a-8c8d-ab0e6ec93db7" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2832. <property name="from" value="\App\Models\ContrattoServizio"/>
  2833. <property name="inverse-alias" value="contrattoTemplate"/>
  2834. <property name="many-inverse" value="false"/>
  2835. <property name="many-owner" value="true"/>
  2836. <property name="onDelete" value="set null"/>
  2837. <property name="owner-alias" value="contrattiServizio"/>
  2838. <property name="to" value="\App\Models\ContrattoTemplate"/>
  2839. </element>
  2840. <element action="add" uuid="bf45bb05-0679-49af-a7e9-9ae9422675ab" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2841. <property name="from" value="\App\Models\Offerta"/>
  2842. <property name="inverse-alias" value="user"/>
  2843. <property name="many-inverse" value="false"/>
  2844. <property name="many-owner" value="true"/>
  2845. <property name="onDelete" value="set null"/>
  2846. <property name="owner-alias" value="offerte"/>
  2847. <property name="to" value="\App\Models\User"/>
  2848. </element>
  2849. <element action="add" uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2850. <property name="from" value="\App\Models\OffertaRiga"/>
  2851. <property name="inverse-alias" value="offerta"/>
  2852. <property name="many-inverse" value="false"/>
  2853. <property name="many-owner" value="true"/>
  2854. <property name="onDelete" value="set null"/>
  2855. <property name="owner-alias" value="offerteRiga"/>
  2856. <property name="to" value="\App\Models\Offerta"/>
  2857. </element>
  2858. <element action="add" uuid="ad855143-f6b1-4d71-9d42-409e76e1efb7" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2859. <property name="from" value="\App\Models\OffertaRiga"/>
  2860. <property name="inverse-alias" value="prodotto"/>
  2861. <property name="many-inverse" value="false"/>
  2862. <property name="many-owner" value="true"/>
  2863. <property name="onDelete" value="set null"/>
  2864. <property name="owner-alias" value="offerteRiga"/>
  2865. <property name="to" value="\App\Models\Prodotto"/>
  2866. </element>
  2867. <element action="add" uuid="a005da89-ed4b-4145-bca2-b27aaa8fce4b" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2868. <property name="from" value="\App\Models\OrdineLavoro"/>
  2869. <property name="inverse-alias" value="user"/>
  2870. <property name="many-inverse" value="false"/>
  2871. <property name="many-owner" value="true"/>
  2872. <property name="onDelete" value="set null"/>
  2873. <property name="owner-alias" value="ordiniLavoro"/>
  2874. <property name="to" value="\App\Models\User"/>
  2875. </element>
  2876. <element action="add" uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2877. <property name="from" value="\App\Models\ContrattoTemplateTodo"/>
  2878. <property name="inverse-alias" value="contrattoTemplate"/>
  2879. <property name="many-inverse" value="false"/>
  2880. <property name="many-owner" value="true"/>
  2881. <property name="onDelete" value="cascade"/>
  2882. <property name="owner-alias" value="contrattoTemplateTodos"/>
  2883. <property name="to" value="\App\Models\ContrattoTemplate"/>
  2884. </element>
  2885. <element action="add" uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2886. <property name="from" value="\App\Models\ContrattoServizioTodo"/>
  2887. <property name="inverse-alias" value="contrattoServizio"/>
  2888. <property name="many-inverse" value="false"/>
  2889. <property name="many-owner" value="true"/>
  2890. <property name="onDelete" value="cascade"/>
  2891. <property name="owner-alias" value="contrattoServizioTodos"/>
  2892. <property name="to" value="\App\Models\ContrattoServizio"/>
  2893. </element>
  2894. <element action="add" uuid="e29244ac-f1e5-4629-bf06-2d29d4a7664c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2895. <property name="from" value="\App\Models\ContrattoServizioTodo"/>
  2896. <property name="inverse-alias" value="contrattoTemplateTodo"/>
  2897. <property name="many-inverse" value="false"/>
  2898. <property name="many-owner" value="true"/>
  2899. <property name="onDelete" value="set null"/>
  2900. <property name="owner-alias" value="contrattoServizioTodos"/>
  2901. <property name="to" value="\App\Models\ContrattoTemplateTodo"/>
  2902. </element>
  2903. <element action="add" uuid="64df4dd6-cb23-408a-a4f1-e1a723103aa0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2904. <property name="from" value="\App\Models\ContrattoTemplateRiga"/>
  2905. <property name="inverse-alias" value="prodotto"/>
  2906. <property name="many-inverse" value="false"/>
  2907. <property name="many-owner" value="true"/>
  2908. <property name="onDelete" value="set null"/>
  2909. <property name="owner-alias" value="contrattiTemplateRiga"/>
  2910. <property name="to" value="\App\Models\Prodotto"/>
  2911. </element>
  2912. <element action="add" uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2913. <property name="from" value="\App\Models\ContrattoTemplateRiga"/>
  2914. <property name="inverse-alias" value="contrattoTemplate"/>
  2915. <property name="many-inverse" value="false"/>
  2916. <property name="many-owner" value="true"/>
  2917. <property name="onDelete" value="cascade"/>
  2918. <property name="owner-alias" value="contrattoTemplateRigas"/>
  2919. <property name="to" value="\App\Models\ContrattoTemplate"/>
  2920. </element>
  2921. <element action="add" uuid="5c8d1dc1-15ed-4379-addb-6b0addcd047e" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2922. <property name="from" value="\App\Models\ContrattoServizioRiga"/>
  2923. <property name="inverse-alias" value="prodotto"/>
  2924. <property name="many-inverse" value="false"/>
  2925. <property name="many-owner" value="true"/>
  2926. <property name="onDelete" value="set null"/>
  2927. <property name="owner-alias" value="contrattiServizioRiga"/>
  2928. <property name="to" value="\App\Models\Prodotto"/>
  2929. </element>
  2930. <element action="add" uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2931. <property name="from" value="\App\Models\ContrattoServizioRiga"/>
  2932. <property name="inverse-alias" value="contrattoServizio"/>
  2933. <property name="many-inverse" value="false"/>
  2934. <property name="many-owner" value="true"/>
  2935. <property name="onDelete" value="cascade"/>
  2936. <property name="owner-alias" value="contrattoServizioRigas"/>
  2937. <property name="to" value="\App\Models\ContrattoServizio"/>
  2938. </element>
  2939. <element action="add" uuid="d49573ad-aa71-43d3-a053-0858f655cd29" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2940. <property name="from" value="\App\Models\AcquistoServizio"/>
  2941. <property name="inverse-alias" value="prodotto"/>
  2942. <property name="many-inverse" value="false"/>
  2943. <property name="many-owner" value="true"/>
  2944. <property name="onDelete" value="set null"/>
  2945. <property name="owner-alias" value="acquistiServizio"/>
  2946. <property name="to" value="\App\Models\Prodotto"/>
  2947. </element>
  2948. <element action="add" uuid="c227ab02-8c3d-4a91-88a1-51e115f830a0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2949. <property name="from" value="\App\Models\AcquistoServizio"/>
  2950. <property name="inverse-alias" value="promoCode"/>
  2951. <property name="many-inverse" value="false"/>
  2952. <property name="many-owner" value="true"/>
  2953. <property name="onDelete" value="set null"/>
  2954. <property name="owner-alias" value="acquistiServizio"/>
  2955. <property name="to" value="\App\Models\PromoCode"/>
  2956. </element>
  2957. <element action="add" uuid="b4bf7317-84eb-4d04-889e-5a8fcf84b12f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2958. <property name="from" value="\App\Models\AcquistoServizio"/>
  2959. <property name="inverse-alias" value="segnalazione"/>
  2960. <property name="many-inverse" value="false"/>
  2961. <property name="many-owner" value="true"/>
  2962. <property name="onDelete" value="set null"/>
  2963. <property name="owner-alias" value="acquistoServizios"/>
  2964. <property name="to" value="\App\Models\Segnalazione"/>
  2965. </element>
  2966. <element action="add" uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2967. <property name="from" value="\App\Models\ProdottoTodo"/>
  2968. <property name="inverse-alias" value="prodotto"/>
  2969. <property name="many-inverse" value="false"/>
  2970. <property name="many-owner" value="true"/>
  2971. <property name="onDelete" value="cascade"/>
  2972. <property name="owner-alias" value="prodottoTodos"/>
  2973. <property name="to" value="\App\Models\Prodotto"/>
  2974. </element>
  2975. <element action="add" uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2976. <property name="from" value="\App\Models\SegnalazioneTodo"/>
  2977. <property name="inverse-alias" value="segnalazione"/>
  2978. <property name="many-inverse" value="false"/>
  2979. <property name="many-owner" value="true"/>
  2980. <property name="onDelete" value="cascade"/>
  2981. <property name="owner-alias" value="segnalazioneTodos"/>
  2982. <property name="to" value="\App\Models\Segnalazione"/>
  2983. </element>
  2984. <element action="add" uuid="05c3f975-b61c-490e-aa04-080772b499ad" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2985. <property name="from" value="\App\Models\SegnalazioneTodo"/>
  2986. <property name="inverse-alias" value="prodottoTodo"/>
  2987. <property name="many-inverse" value="false"/>
  2988. <property name="many-owner" value="true"/>
  2989. <property name="onDelete" value="set null"/>
  2990. <property name="owner-alias" value="segnalazioneTodos"/>
  2991. <property name="to" value="\App\Models\ProdottoTodo"/>
  2992. </element>
  2993. <element action="add" uuid="eb76c46e-4fae-41a5-8cca-e38e69788e6d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  2994. <property name="from" value="\App\Models\SegnalazioneTodo"/>
  2995. <property name="inverse-alias" value="completatoDa"/>
  2996. <property name="many-inverse" value="false"/>
  2997. <property name="many-owner" value="true"/>
  2998. <property name="owner-alias" value="segnalazioneTodos"/>
  2999. <property name="to" value="\App\Models\User"/>
  3000. </element>
  3001. <element action="add" uuid="f66c0c1c-a961-4b58-b5b9-46c97265ead5" parent-uuid="8399970c-2d0b-403e-996b-e86248cb3bc5" type="association-field">
  3002. <property name="from" value="comune_id"/>
  3003. <property name="to" value="id"/>
  3004. </element>
  3005. <element action="add" uuid="867d2980-d54c-4b5c-8ab6-c07f0783c368" parent-uuid="787d90ec-5676-4749-9b36-cea959c6793b" type="association-field">
  3006. <property name="from" value="azienda_id"/>
  3007. <property name="to" value="id"/>
  3008. </element>
  3009. <element action="add" uuid="d432694a-89df-447e-801d-24b276e2ac8c" parent-uuid="2fa65d03-8ddb-413f-8064-798860928786" type="association-field">
  3010. <property name="from" value="assegnata_a_id"/>
  3011. <property name="to" value="id"/>
  3012. </element>
  3013. <element action="add" uuid="08699248-9392-4b75-b16b-ade34b487929" parent-uuid="6faa9818-b5b6-4eab-96b6-6eaf56d1de79" type="association-field">
  3014. <property name="from" value="user_id"/>
  3015. <property name="to" value="id"/>
  3016. </element>
  3017. <element action="add" uuid="ff304b0f-2ee3-4290-8f70-d512cc0cedbe" parent-uuid="d586b98c-7daa-49d4-ada1-8c2c9223fb66" type="association-field">
  3018. <property name="from" value="azienda_id"/>
  3019. <property name="to" value="id"/>
  3020. </element>
  3021. <element action="add" uuid="f88439b2-fde3-4839-896b-4fc572f767e0" parent-uuid="5f4ca39e-40ba-4157-bf4c-603b7469b044" type="association-field">
  3022. <property name="from" value="contratto_servizio_id"/>
  3023. <property name="to" value="id"/>
  3024. </element>
  3025. <element action="add" uuid="b9b6e825-5ce8-4473-be84-81c0df564f89" parent-uuid="86aded2a-2e4e-4fc2-8702-5191cd073056" type="association-field">
  3026. <property name="from" value="ordine_lavoro_id"/>
  3027. <property name="to" value="id"/>
  3028. </element>
  3029. <element action="add" uuid="14be7b69-4db0-40ea-bb4b-c32bec31da91" parent-uuid="faaed052-f628-4ae7-8f52-b3614fad893e" type="association-field">
  3030. <property name="from" value="contratto_servizio_todo_id"/>
  3031. <property name="to" value="id"/>
  3032. </element>
  3033. <element action="add" uuid="e298ce6f-7e2c-4b7e-80e3-41c8cd31be5e" parent-uuid="41971b51-8523-4c42-83a6-4ea29a618e4c" type="association-field">
  3034. <property name="from" value="acquisto_servizio_id"/>
  3035. <property name="to" value="id"/>
  3036. </element>
  3037. <element action="add" uuid="dfe269b5-36b7-4a6a-ad73-5195877c88f3" parent-uuid="3d14fd5b-7f78-49e4-831f-a98aa484a94f" type="association-field">
  3038. <property name="from" value="prodotto_id"/>
  3039. <property name="to" value="id"/>
  3040. </element>
  3041. <element action="add" uuid="76a290ad-9338-4ae7-a168-dd924d4c0b9f" parent-uuid="9d4fa7d0-23be-4bb2-99bd-67797c3244c0" type="association-field">
  3042. <property name="from" value="segnalazione_id"/>
  3043. <property name="to" value="id"/>
  3044. </element>
  3045. <element action="add" uuid="1fb9c039-f291-4e4e-ac2f-c31f14db295b" parent-uuid="f5d31adf-5971-42f7-90bf-41571fe64218" type="association-field">
  3046. <property name="from" value="user_id"/>
  3047. <property name="to" value="id"/>
  3048. </element>
  3049. <element action="add" uuid="c74b78f8-307e-4473-a96d-263d5f8908d2" parent-uuid="719929c1-e0fe-4feb-950a-ba417c35a60c" type="association-field">
  3050. <property name="from" value="annotazione_id"/>
  3051. <property name="to" value="id"/>
  3052. </element>
  3053. <element action="add" uuid="8f51c513-0361-4147-b7ac-26b56c42011d" parent-uuid="345b5351-9f8a-4d02-9192-1bb27645761d" type="association-field">
  3054. <property name="from" value="nazione_id"/>
  3055. <property name="to" value="id"/>
  3056. </element>
  3057. <element action="add" uuid="bb143e14-84bd-4e4a-bc86-6045f340856b" parent-uuid="4399e41c-477e-44d7-91db-b1cd4614f294" type="association-field">
  3058. <property name="from" value="provincia_id"/>
  3059. <property name="to" value="id"/>
  3060. </element>
  3061. <element action="add" uuid="3bf703ca-9546-4b79-85c0-8febb961d821" parent-uuid="299d534d-b5ef-411c-b66b-f4adaaa3b4f1" type="association-field">
  3062. <property name="from" value="nazione_id"/>
  3063. <property name="to" value="id"/>
  3064. </element>
  3065. <element action="add" uuid="cf09dd81-f27c-4eb3-a6b8-60c56ff9c629" parent-uuid="3842d2b3-d137-47bc-9a10-14b7a860c153" type="association-field">
  3066. <property name="from" value="user_id"/>
  3067. <property name="to" value="id"/>
  3068. </element>
  3069. <element action="add" uuid="f5ecdcde-183a-44d3-9a40-6f73b49289cc" parent-uuid="4e4e7f6b-b25f-4a8a-8c8d-ab0e6ec93db7" type="association-field">
  3070. <property name="from" value="contratto_template_id"/>
  3071. <property name="to" value="id"/>
  3072. </element>
  3073. <element action="add" uuid="a54053de-2584-4984-8dbc-ba5a1137571c" parent-uuid="bf45bb05-0679-49af-a7e9-9ae9422675ab" type="association-field">
  3074. <property name="from" value="user_id"/>
  3075. <property name="to" value="id"/>
  3076. </element>
  3077. <element action="add" uuid="68a5419f-adef-4d6e-9b28-873c2fbc3d50" parent-uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" type="association-field">
  3078. <property name="from" value="offerta_id"/>
  3079. <property name="to" value="id"/>
  3080. </element>
  3081. <element action="add" uuid="0e98c32c-512b-47c3-bc4f-b3ec66dff09f" parent-uuid="ad855143-f6b1-4d71-9d42-409e76e1efb7" type="association-field">
  3082. <property name="from" value="prodotto_id"/>
  3083. <property name="to" value="id"/>
  3084. </element>
  3085. <element action="add" uuid="ea6d7186-c6ee-401b-97b4-3274e72831c5" parent-uuid="a005da89-ed4b-4145-bca2-b27aaa8fce4b" type="association-field">
  3086. <property name="from" value="user_id"/>
  3087. <property name="to" value="id"/>
  3088. </element>
  3089. <element action="add" uuid="585c20ce-9da8-4fe2-9926-0681cd0c32f1" parent-uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" type="association-field">
  3090. <property name="from" value="contratto_template_id"/>
  3091. <property name="to" value="id"/>
  3092. </element>
  3093. <element action="add" uuid="599210f0-f87a-4280-badd-0717a4fbcd40" parent-uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" type="association-field">
  3094. <property name="from" value="contratto_servizio_id"/>
  3095. <property name="to" value="id"/>
  3096. </element>
  3097. <element action="add" uuid="5b213914-00e8-4c89-9150-7022b294766a" parent-uuid="e29244ac-f1e5-4629-bf06-2d29d4a7664c" type="association-field">
  3098. <property name="from" value="contratto_template_todo_id"/>
  3099. <property name="to" value="id"/>
  3100. </element>
  3101. <element action="add" uuid="ddbd2bf2-b433-47b1-9c3b-486b86f25032" parent-uuid="64df4dd6-cb23-408a-a4f1-e1a723103aa0" type="association-field">
  3102. <property name="from" value="prodotto_id"/>
  3103. <property name="to" value="id"/>
  3104. </element>
  3105. <element action="add" uuid="868068aa-7b93-4c95-ae09-588db5fe51e2" parent-uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" type="association-field">
  3106. <property name="from" value="contratto_template_id"/>
  3107. <property name="to" value="id"/>
  3108. </element>
  3109. <element action="add" uuid="e1b63a6d-9fc1-48b8-8a2a-54a34489ff3a" parent-uuid="5c8d1dc1-15ed-4379-addb-6b0addcd047e" type="association-field">
  3110. <property name="from" value="prodotto_id"/>
  3111. <property name="to" value="id"/>
  3112. </element>
  3113. <element action="add" uuid="79825cde-3073-435d-9dec-fec172cbf19d" parent-uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" type="association-field">
  3114. <property name="from" value="contratto_servizio_id"/>
  3115. <property name="to" value="id"/>
  3116. </element>
  3117. <element action="add" uuid="cbfb0c26-6096-4ff5-95ec-766af130bf9c" parent-uuid="d49573ad-aa71-43d3-a053-0858f655cd29" type="association-field">
  3118. <property name="from" value="prodotto_id"/>
  3119. <property name="to" value="id"/>
  3120. </element>
  3121. <element action="add" uuid="35849a96-4291-4068-a130-a6570917a0cc" parent-uuid="c227ab02-8c3d-4a91-88a1-51e115f830a0" type="association-field">
  3122. <property name="from" value="promo_code_id"/>
  3123. <property name="to" value="id"/>
  3124. </element>
  3125. <element action="add" uuid="54f240d3-c752-4594-9da1-2f1f569d36c8" parent-uuid="b4bf7317-84eb-4d04-889e-5a8fcf84b12f" type="association-field">
  3126. <property name="from" value="segnalazione_id"/>
  3127. <property name="to" value="id"/>
  3128. </element>
  3129. <element action="add" uuid="8739cbb8-97d0-4b24-bdf2-7218bba13cf2" parent-uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" type="association-field">
  3130. <property name="from" value="prodotto_id"/>
  3131. <property name="to" value="id"/>
  3132. </element>
  3133. <element action="add" uuid="7c11bde8-f541-4a43-aa6b-a8583a591dbe" parent-uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" type="association-field">
  3134. <property name="from" value="segnalazione_id"/>
  3135. <property name="to" value="id"/>
  3136. </element>
  3137. <element action="add" uuid="86840487-55f9-4adc-b5fe-98379305f899" parent-uuid="05c3f975-b61c-490e-aa04-080772b499ad" type="association-field">
  3138. <property name="from" value="prodotto_todo_id"/>
  3139. <property name="to" value="id"/>
  3140. </element>
  3141. <element action="add" uuid="1422f882-923a-4fb9-ba53-b782043d1aad" parent-uuid="eb76c46e-4fae-41a5-8cca-e38e69788e6d" type="association-field">
  3142. <property name="from" value="completato_da_id"/>
  3143. <property name="to" value="id"/>
  3144. </element>
  3145. <element action="add" uuid="2f367518-de50-431b-a35b-845be0f0d6a1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="many-to-many">
  3146. <property name="mn-entity" value="\App\Models\OrdineLavoroHasOfferta"/>
  3147. </element>
  3148. <element action="add" uuid="b628247f-6792-430c-970b-aa651c7f7870" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="many-to-many">
  3149. <property name="mn-entity" value="\App\Models\PromoCodeHasProdotto"/>
  3150. </element>
  3151. <element action="add" uuid="23689857-4279-44e9-9a77-f58deb0455e3" parent-uuid="2f367518-de50-431b-a35b-845be0f0d6a1" type="many-to-many-entity">
  3152. <property name="alias" value="offerte"/>
  3153. <property name="name" value="\App\Models\Offerta"/>
  3154. <property name="owning-side" value="true"/>
  3155. </element>
  3156. <element action="add" uuid="f557820c-6dac-427e-ac7c-ffa88be2cce4" parent-uuid="2f367518-de50-431b-a35b-845be0f0d6a1" type="many-to-many-entity">
  3157. <property name="alias" value="ordiniLavoro"/>
  3158. <property name="name" value="\App\Models\OrdineLavoro"/>
  3159. <property name="owning-side" value="false"/>
  3160. </element>
  3161. <element action="add" uuid="b51dbffa-75cf-4b1a-92eb-83a8ac62d775" parent-uuid="b628247f-6792-430c-970b-aa651c7f7870" type="many-to-many-entity">
  3162. <property name="alias" value="prodotti"/>
  3163. <property name="name" value="\App\Models\Prodotto"/>
  3164. <property name="owning-side" value="true"/>
  3165. </element>
  3166. <element action="add" uuid="90017630-36c3-4e45-b433-7eec25a364e8" parent-uuid="b628247f-6792-430c-970b-aa651c7f7870" type="many-to-many-entity">
  3167. <property name="alias" value="promoCodes"/>
  3168. <property name="name" value="\App\Models\PromoCode"/>
  3169. <property name="owning-side" value="false"/>
  3170. </element>
  3171. <element action="add" uuid="565f4711-1df5-45ad-949d-8c08cc7d81ec" parent-uuid="23689857-4279-44e9-9a77-f58deb0455e3" type="many-to-many-field">
  3172. <property name="from" value="offerta_id"/>
  3173. <property name="to" value="id"/>
  3174. </element>
  3175. <element action="add" uuid="bf9afc7e-7bb7-43dd-a081-3eac94839d30" parent-uuid="f557820c-6dac-427e-ac7c-ffa88be2cce4" type="many-to-many-field">
  3176. <property name="from" value="ordine_lavoro_id"/>
  3177. <property name="to" value="id"/>
  3178. </element>
  3179. <element action="add" uuid="727ea3ce-db87-4aba-8a83-db60bda0e7e4" parent-uuid="b51dbffa-75cf-4b1a-92eb-83a8ac62d775" type="many-to-many-field">
  3180. <property name="from" value="prodotto_id"/>
  3181. <property name="to" value="id"/>
  3182. </element>
  3183. <element action="add" uuid="3155e17d-c9ee-4911-a98d-ca14e7351d0b" parent-uuid="90017630-36c3-4e45-b433-7eec25a364e8" type="many-to-many-field">
  3184. <property name="from" value="promo_code_id"/>
  3185. <property name="to" value="id"/>
  3186. </element>
  3187. </revision>
  3188. <revision uuid="01bba22b-e663-4279-bf3f-f2d3ff5b54a3" date="2026-08-10 23:54:52.079861" exportable="true">
  3189. <element action="add" uuid="c05381f2-589c-4fc3-837d-ae38b097500c" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="75bbae31-8850-4bd7-ad84-264a0a9ef52d" type="field">
  3190. <property name="name" value="dominio_email"/>
  3191. <property name="type" value="string"/>
  3192. </element>
  3193. <element action="add" uuid="12c38b7e-21ca-4073-9dcd-bed9c1d1f171" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="d811fff4-3f7a-488b-9be1-c623c26f43f8" type="field">
  3194. <property name="default" value="0"/>
  3195. <property name="name" value="default_import_email"/>
  3196. <property name="type" value="boolean"/>
  3197. </element>
  3198. <element action="reorder" uuid="519bbe2d-e5b8-49c0-b964-08644a0c119f" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="c05381f2-589c-4fc3-837d-ae38b097500c" previous-sibling-uuid="75bbae31-8850-4bd7-ad84-264a0a9ef52d" type="field" helper="true"/>
  3199. <element action="reorder" uuid="b89c48dd-a31b-4173-98c3-56f688449a23" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" sibling-uuid="12c38b7e-21ca-4073-9dcd-bed9c1d1f171" previous-sibling-uuid="d811fff4-3f7a-488b-9be1-c623c26f43f8" type="field" helper="true"/>
  3200. </revision>
  3201. <revision uuid="42581b1c-7407-4cb6-acd9-9bb4cb918b0a" date="2026-08-21 13:25:51.472661" exportable="true">
  3202. <element action="add" uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  3203. <property name="fillableAll" value="as-fillable-all"/>
  3204. <property name="local-name" value="CasellaImap"/>
  3205. <property name="name" value="\App\Models\CasellaImap"/>
  3206. <property name="namespace" value="\App\Models"/>
  3207. <property name="table" value="casella_imap"/>
  3208. </element>
  3209. <element action="add" uuid="dae66f10-abd5-4d06-a7df-7a1dc16d3eae" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="8db2eb16-6b67-402e-bd36-c9e662a0f5a7" type="field">
  3210. <property name="name" value="sconto_tipo"/>
  3211. <property name="type" value="string"/>
  3212. </element>
  3213. <element action="add" uuid="d9652508-34dc-4ccf-a4d4-555f1bb614ca" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="dae66f10-abd5-4d06-a7df-7a1dc16d3eae" type="field">
  3214. <property name="decimal" value="2"/>
  3215. <property name="name" value="sconto_valore"/>
  3216. <property name="size" value="10"/>
  3217. <property name="type" value="decimal"/>
  3218. </element>
  3219. <element action="add" uuid="1001d7d0-b501-46c8-872e-ef7772ad9df9" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="ff878a32-4891-4622-8bd1-0c053da212ff" type="field">
  3220. <property name="name" value="data_inizio"/>
  3221. <property name="type" value="date"/>
  3222. </element>
  3223. <element action="add" uuid="c5bc5aa0-3cee-4617-9ef7-aec55fe6396a" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="1001d7d0-b501-46c8-872e-ef7772ad9df9" type="field">
  3224. <property name="name" value="data_fine"/>
  3225. <property name="type" value="date"/>
  3226. </element>
  3227. <element action="add" uuid="448cba2f-fa91-47fd-af2a-5493103bdb9b" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" type="field">
  3228. <property name="auto-increment" value="true"/>
  3229. <property name="name" value="id"/>
  3230. <property name="primary" value="true"/>
  3231. <property name="required" value="true"/>
  3232. <property name="type" value="bigInteger"/>
  3233. <property name="unique" value="true"/>
  3234. <property name="unsigned" value="true"/>
  3235. </element>
  3236. <element action="add" uuid="ef188830-4927-4885-a15a-649d7856e40d" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="448cba2f-fa91-47fd-af2a-5493103bdb9b" type="field">
  3237. <property name="name" value="nome"/>
  3238. <property name="type" value="string"/>
  3239. </element>
  3240. <element action="add" uuid="dacc8a03-04c5-46e0-a21c-f26bfe95f619" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="ef188830-4927-4885-a15a-649d7856e40d" type="field">
  3241. <property name="name" value="host"/>
  3242. <property name="type" value="string"/>
  3243. </element>
  3244. <element action="add" uuid="2e2a46f5-974a-4f5a-96f7-22d45b5a0577" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="dacc8a03-04c5-46e0-a21c-f26bfe95f619" type="field">
  3245. <property name="default" value="993"/>
  3246. <property name="name" value="porta"/>
  3247. <property name="type" value="smallInteger"/>
  3248. <property name="unsigned" value="true"/>
  3249. </element>
  3250. <element action="add" uuid="a2086dd6-3672-4254-abfb-4b97c90ec015" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="2e2a46f5-974a-4f5a-96f7-22d45b5a0577" type="field">
  3251. <property name="default" value="ssl"/>
  3252. <property name="name" value="encryption"/>
  3253. <property name="type" value="string"/>
  3254. </element>
  3255. <element action="add" uuid="7a9dbe8a-de13-41b1-8ffa-09a1fd9e2a87" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="a2086dd6-3672-4254-abfb-4b97c90ec015" type="field">
  3256. <property name="default" value="1"/>
  3257. <property name="name" value="valida_certificato"/>
  3258. <property name="type" value="boolean"/>
  3259. </element>
  3260. <element action="add" uuid="8882e90a-533c-497b-baeb-bf86a45d4110" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="7a9dbe8a-de13-41b1-8ffa-09a1fd9e2a87" type="field">
  3261. <property name="name" value="username"/>
  3262. <property name="type" value="string"/>
  3263. </element>
  3264. <element action="add" uuid="42a2f565-6d2c-423c-a2f5-9854f208e63e" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="8882e90a-533c-497b-baeb-bf86a45d4110" type="field">
  3265. <property name="name" value="password"/>
  3266. <property name="type" value="string"/>
  3267. </element>
  3268. <element action="add" uuid="2f407c8d-76dc-402f-9ad2-942f76e77ad5" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="42a2f565-6d2c-423c-a2f5-9854f208e63e" type="field">
  3269. <property name="default" value="imap"/>
  3270. <property name="name" value="protocollo"/>
  3271. <property name="type" value="string"/>
  3272. </element>
  3273. <element action="add" uuid="52c3622c-e39a-4a55-89f7-04fee69d5003" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="2f407c8d-76dc-402f-9ad2-942f76e77ad5" type="field">
  3274. <property name="default" value="INBOX"/>
  3275. <property name="name" value="cartella"/>
  3276. <property name="type" value="string"/>
  3277. </element>
  3278. <element action="add" uuid="aef91ef0-5429-4ed2-af72-88827e34850d" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="52c3622c-e39a-4a55-89f7-04fee69d5003" type="field">
  3279. <property name="name" value="cartella_processate"/>
  3280. <property name="type" value="string"/>
  3281. </element>
  3282. <element action="add" uuid="2237f4e2-1eca-4824-a4ee-eb3ec465f002" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="aef91ef0-5429-4ed2-af72-88827e34850d" type="field">
  3283. <property name="default" value="1"/>
  3284. <property name="name" value="solo_non_lette"/>
  3285. <property name="type" value="boolean"/>
  3286. </element>
  3287. <element action="add" uuid="988c2976-20eb-4f1a-b066-70c4cfa2c4ec" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="2237f4e2-1eca-4824-a4ee-eb3ec465f002" type="field">
  3288. <property name="default" value="1"/>
  3289. <property name="name" value="marca_come_letta"/>
  3290. <property name="type" value="boolean"/>
  3291. </element>
  3292. <element action="add" uuid="7ff6b7a2-766d-4651-974c-0b30815fd5fb" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="988c2976-20eb-4f1a-b066-70c4cfa2c4ec" type="field">
  3293. <property name="default" value="1"/>
  3294. <property name="name" value="sposta_processate"/>
  3295. <property name="type" value="boolean"/>
  3296. </element>
  3297. <element action="add" uuid="ffa286c1-d955-4f88-9303-45d7bcaf21ae" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="7ff6b7a2-766d-4651-974c-0b30815fd5fb" type="field">
  3298. <property name="default" value="1"/>
  3299. <property name="name" value="attivo"/>
  3300. <property name="type" value="boolean"/>
  3301. </element>
  3302. <element action="add" uuid="0b4175e0-b5db-4a00-8e90-87866ec21aaf" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="ffa286c1-d955-4f88-9303-45d7bcaf21ae" type="field">
  3303. <property name="name" value="ultimo_controllo_at"/>
  3304. <property name="type" value="timestamp"/>
  3305. </element>
  3306. <element action="add" uuid="be268580-0630-471f-a36c-33b5fc6c7504" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="0b4175e0-b5db-4a00-8e90-87866ec21aaf" type="field">
  3307. <property name="name" value="ultimo_errore"/>
  3308. <property name="type" value="text"/>
  3309. </element>
  3310. <element action="add" uuid="04d91505-3ffd-4814-957d-373115a63411" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="be268580-0630-471f-a36c-33b5fc6c7504" type="field">
  3311. <property name="name" value="created_at"/>
  3312. <property name="type" value="timestamp"/>
  3313. </element>
  3314. <element action="add" uuid="a926e66a-b866-4393-95d9-685fc390e55d" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" sibling-uuid="04d91505-3ffd-4814-957d-373115a63411" type="field">
  3315. <property name="name" value="updated_at"/>
  3316. <property name="type" value="timestamp"/>
  3317. </element>
  3318. <element action="reorder" uuid="ff878a32-4891-4622-8bd1-0c053da212ff" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="d9652508-34dc-4ccf-a4d4-555f1bb614ca" previous-sibling-uuid="8db2eb16-6b67-402e-bd36-c9e662a0f5a7" type="field" helper="true"/>
  3319. <element action="reorder" uuid="73662125-5f5e-4918-bade-f5428ab2def4" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" sibling-uuid="c5bc5aa0-3cee-4617-9ef7-aec55fe6396a" previous-sibling-uuid="ff878a32-4891-4622-8bd1-0c053da212ff" type="field" helper="true"/>
  3320. </revision>
  3321. <revision uuid="8e0d5a3a-8eda-4844-b920-94f9725ffb7d" date="2026-08-21 22:36:25.479501" exportable="true">
  3322. <element action="update" uuid="f748b6d3-a6af-40b0-a522-4447364a2948" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" sibling-uuid="734b6cb6-58f7-4a2b-b27d-ab8dc46cf714" type="field">
  3323. <property name="type" value="longText"/>
  3324. </element>
  3325. </revision>
  3326. <revision uuid="7f3f4ead-c952-4a36-adc9-28e57f9d6798" date="2026-08-21 23:01:49.125093" exportable="true">
  3327. <element action="add" uuid="33ec009d-c086-49d1-9d60-78edb4e17fc7" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="519bbe2d-e5b8-49c0-b964-08644a0c119f" type="field">
  3328. <property name="default" value="0"/>
  3329. <property name="name" value="responsabile_azienda"/>
  3330. <property name="type" value="boolean"/>
  3331. </element>
  3332. <element action="reorder" uuid="40919a29-47f6-4516-9c3d-917ed2c9afe6" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" sibling-uuid="33ec009d-c086-49d1-9d60-78edb4e17fc7" previous-sibling-uuid="519bbe2d-e5b8-49c0-b964-08644a0c119f" type="field" helper="true"/>
  3333. </revision>
  3334. <revision uuid="3404b97d-dc5c-4338-b8dd-c14acb80c725" date="2026-08-26 15:23:46.436721" exportable="true">
  3335. <element action="add" uuid="68922686-8dc2-403e-a281-a0efcdf39a82" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  3336. <property name="fillableAll" value="as-fillable-all"/>
  3337. <property name="local-name" value="Fattura"/>
  3338. <property name="name" value="\App\Models\Fattura"/>
  3339. <property name="namespace" value="\App\Models"/>
  3340. <property name="table" value="fattura"/>
  3341. </element>
  3342. <element action="add" uuid="6cc482e6-604b-4e73-9870-36f4f2711362" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  3343. <property name="fillableAll" value="as-fillable-all"/>
  3344. <property name="local-name" value="FatturaRiga"/>
  3345. <property name="name" value="\App\Models\FatturaRiga"/>
  3346. <property name="namespace" value="\App\Models"/>
  3347. <property name="table" value="fattura_riga"/>
  3348. </element>
  3349. <element action="add" uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  3350. <property name="fillableAll" value="as-fillable-all"/>
  3351. <property name="local-name" value="SegnalazioneSlot"/>
  3352. <property name="name" value="\App\Models\SegnalazioneSlot"/>
  3353. <property name="namespace" value="\App\Models"/>
  3354. <property name="table" value="segnalazione_slot"/>
  3355. </element>
  3356. <element action="add" uuid="8d96db71-3d83-442b-8fde-d4ef73b998d1" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" type="field">
  3357. <property name="auto-increment" value="true"/>
  3358. <property name="name" value="id"/>
  3359. <property name="primary" value="true"/>
  3360. <property name="required" value="true"/>
  3361. <property name="type" value="bigInteger"/>
  3362. <property name="unique" value="true"/>
  3363. <property name="unsigned" value="true"/>
  3364. </element>
  3365. <element action="add" uuid="af9e2aba-ed74-4675-b2a6-b8e5849d4636" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="8d96db71-3d83-442b-8fde-d4ef73b998d1" type="field">
  3366. <property name="name" value="user_id"/>
  3367. <property name="type" value="bigInteger"/>
  3368. <property name="unsigned" value="true"/>
  3369. </element>
  3370. <element action="add" uuid="c5f80f70-abda-43ea-bd96-4342fc0c1135" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="af9e2aba-ed74-4675-b2a6-b8e5849d4636" type="field">
  3371. <property name="name" value="created_by_id"/>
  3372. <property name="type" value="bigInteger"/>
  3373. <property name="unsigned" value="true"/>
  3374. </element>
  3375. <element action="add" uuid="814b84d9-8b89-40a5-9e01-cc834ea50b6e" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="c5f80f70-abda-43ea-bd96-4342fc0c1135" type="field">
  3376. <property name="name" value="numero"/>
  3377. <property name="type" value="integer"/>
  3378. </element>
  3379. <element action="add" uuid="9c2b755c-2f48-40fc-a96d-db71a3ae8b09" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="814b84d9-8b89-40a5-9e01-cc834ea50b6e" type="field">
  3380. <property name="name" value="stato"/>
  3381. <property name="type" value="string"/>
  3382. </element>
  3383. <element action="add" uuid="c4f78038-4cfb-4dd1-bcac-b9d383a4d59b" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="9c2b755c-2f48-40fc-a96d-db71a3ae8b09" type="field">
  3384. <property name="name" value="data"/>
  3385. <property name="type" value="date"/>
  3386. </element>
  3387. <element action="add" uuid="6e93d6fb-f64c-41da-84bb-a80a5c2e3746" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="c4f78038-4cfb-4dd1-bcac-b9d383a4d59b" type="field">
  3388. <property name="name" value="data_scadenza"/>
  3389. <property name="type" value="date"/>
  3390. </element>
  3391. <element action="add" uuid="306e5089-edea-4e61-92ff-9e0775233e9d" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="6e93d6fb-f64c-41da-84bb-a80a5c2e3746" type="field">
  3392. <property name="name" value="periodo_da"/>
  3393. <property name="type" value="date"/>
  3394. </element>
  3395. <element action="add" uuid="56dc7aa8-f831-4d0f-8fef-5164a0913193" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="306e5089-edea-4e61-92ff-9e0775233e9d" type="field">
  3396. <property name="name" value="periodo_a"/>
  3397. <property name="type" value="date"/>
  3398. </element>
  3399. <element action="add" uuid="920496ba-c681-43bf-bd2e-8bc0790e7ef3" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="56dc7aa8-f831-4d0f-8fef-5164a0913193" type="field">
  3400. <property name="decimal" value="2"/>
  3401. <property name="name" value="imponibile"/>
  3402. <property name="size" value="10"/>
  3403. <property name="type" value="decimal"/>
  3404. </element>
  3405. <element action="add" uuid="5859d5c0-be4b-482d-9f58-21ec4db541c2" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="920496ba-c681-43bf-bd2e-8bc0790e7ef3" type="field">
  3406. <property name="decimal" value="2"/>
  3407. <property name="name" value="iva_percentuale"/>
  3408. <property name="size" value="10"/>
  3409. <property name="type" value="decimal"/>
  3410. </element>
  3411. <element action="add" uuid="d356d45a-2226-4425-a50b-9b1e4eedfa6e" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="5859d5c0-be4b-482d-9f58-21ec4db541c2" type="field">
  3412. <property name="decimal" value="2"/>
  3413. <property name="name" value="iva"/>
  3414. <property name="size" value="10"/>
  3415. <property name="type" value="decimal"/>
  3416. </element>
  3417. <element action="add" uuid="9903207b-f0cd-444d-adbf-3611f1ebf4d8" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="d356d45a-2226-4425-a50b-9b1e4eedfa6e" type="field">
  3418. <property name="decimal" value="2"/>
  3419. <property name="name" value="totale"/>
  3420. <property name="size" value="10"/>
  3421. <property name="type" value="decimal"/>
  3422. </element>
  3423. <element action="add" uuid="763c3bf5-05b8-438a-94c7-0c4384affaba" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="9903207b-f0cd-444d-adbf-3611f1ebf4d8" type="field">
  3424. <property name="name" value="note"/>
  3425. <property name="type" value="text"/>
  3426. </element>
  3427. <element action="add" uuid="075bf658-058d-424f-b48e-b1e28b1e049e" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="763c3bf5-05b8-438a-94c7-0c4384affaba" type="field">
  3428. <property name="name" value="path_file"/>
  3429. <property name="type" value="string"/>
  3430. </element>
  3431. <element action="add" uuid="576e02ce-8672-492c-b6ec-01308fea5622" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="075bf658-058d-424f-b48e-b1e28b1e049e" type="field">
  3432. <property name="name" value="ragione_sociale"/>
  3433. <property name="type" value="string"/>
  3434. </element>
  3435. <element action="add" uuid="b7cff289-6dd6-456e-85c2-42ca63b1e1e9" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="576e02ce-8672-492c-b6ec-01308fea5622" type="field">
  3436. <property name="name" value="piva"/>
  3437. <property name="type" value="string"/>
  3438. </element>
  3439. <element action="add" uuid="48f48aab-d7ef-414d-83a0-7ab98f913223" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="b7cff289-6dd6-456e-85c2-42ca63b1e1e9" type="field">
  3440. <property name="name" value="cod_fiscale"/>
  3441. <property name="type" value="string"/>
  3442. </element>
  3443. <element action="add" uuid="02f2de90-e5ee-4b4a-80a0-8d3cf2dd72a4" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="48f48aab-d7ef-414d-83a0-7ab98f913223" type="field">
  3444. <property name="name" value="indirizzo"/>
  3445. <property name="type" value="string"/>
  3446. </element>
  3447. <element action="add" uuid="bde98b8c-6c2d-4841-9df7-887e4b220f88" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="02f2de90-e5ee-4b4a-80a0-8d3cf2dd72a4" type="field">
  3448. <property name="name" value="email"/>
  3449. <property name="type" value="string"/>
  3450. </element>
  3451. <element action="add" uuid="3a91a095-aeb7-4b60-9933-f8614d0e3162" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="bde98b8c-6c2d-4841-9df7-887e4b220f88" type="field">
  3452. <property name="name" value="telefono"/>
  3453. <property name="type" value="string"/>
  3454. </element>
  3455. <element action="add" uuid="48bd7251-8781-4882-8e2a-5f40f28052c6" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="3a91a095-aeb7-4b60-9933-f8614d0e3162" type="field">
  3456. <property name="name" value="meta"/>
  3457. <property name="type" value="json"/>
  3458. </element>
  3459. <element action="add" uuid="a976501c-a52b-4bc6-ba45-f22d7f7ec967" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="48bd7251-8781-4882-8e2a-5f40f28052c6" type="field">
  3460. <property name="name" value="comune_id"/>
  3461. <property name="type" value="bigInteger"/>
  3462. <property name="unsigned" value="true"/>
  3463. </element>
  3464. <element action="add" uuid="ee6845fc-c117-4f0a-851e-106fea406367" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="a976501c-a52b-4bc6-ba45-f22d7f7ec967" type="field">
  3465. <property name="name" value="created_at"/>
  3466. <property name="type" value="timestamp"/>
  3467. </element>
  3468. <element action="add" uuid="4fa40b85-f8b0-4306-a10e-6da0d8bfeabb" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" sibling-uuid="ee6845fc-c117-4f0a-851e-106fea406367" type="field">
  3469. <property name="name" value="updated_at"/>
  3470. <property name="type" value="timestamp"/>
  3471. </element>
  3472. <element action="add" uuid="c9bbfc3a-fa00-44c2-b098-5904d0b7b3e6" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" type="field">
  3473. <property name="auto-increment" value="true"/>
  3474. <property name="name" value="id"/>
  3475. <property name="primary" value="true"/>
  3476. <property name="required" value="true"/>
  3477. <property name="type" value="bigInteger"/>
  3478. <property name="unique" value="true"/>
  3479. <property name="unsigned" value="true"/>
  3480. </element>
  3481. <element action="add" uuid="b4de60f9-13ec-4965-b461-190be76f143a" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="c9bbfc3a-fa00-44c2-b098-5904d0b7b3e6" type="field">
  3482. <property name="name" value="fattura_id"/>
  3483. <property name="type" value="bigInteger"/>
  3484. <property name="unsigned" value="true"/>
  3485. </element>
  3486. <element action="add" uuid="6257b217-17d6-41a3-9487-5c518c2bc02b" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="b4de60f9-13ec-4965-b461-190be76f143a" type="field">
  3487. <property name="name" value="tipo"/>
  3488. <property name="type" value="string"/>
  3489. </element>
  3490. <element action="add" uuid="a148a569-2e9c-4101-b80e-7b4256298e21" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="6257b217-17d6-41a3-9487-5c518c2bc02b" type="field">
  3491. <property name="name" value="descrizione"/>
  3492. <property name="type" value="string"/>
  3493. </element>
  3494. <element action="add" uuid="1ccc9c16-7d83-49d4-bfd1-c6b4a1161716" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="a148a569-2e9c-4101-b80e-7b4256298e21" type="field">
  3495. <property name="decimal" value="2"/>
  3496. <property name="name" value="quantita"/>
  3497. <property name="size" value="10"/>
  3498. <property name="type" value="decimal"/>
  3499. </element>
  3500. <element action="add" uuid="92db035d-b7a0-4b42-8172-f47554b2610d" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="1ccc9c16-7d83-49d4-bfd1-c6b4a1161716" type="field">
  3501. <property name="name" value="unita_misura"/>
  3502. <property name="type" value="string"/>
  3503. </element>
  3504. <element action="add" uuid="69557940-3860-4a2b-8a9b-2462aaab29db" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="92db035d-b7a0-4b42-8172-f47554b2610d" type="field">
  3505. <property name="decimal" value="2"/>
  3506. <property name="name" value="prezzo_unitario"/>
  3507. <property name="size" value="10"/>
  3508. <property name="type" value="decimal"/>
  3509. </element>
  3510. <element action="add" uuid="91a15e9b-c71e-4931-b219-009b9310a80d" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="69557940-3860-4a2b-8a9b-2462aaab29db" type="field">
  3511. <property name="decimal" value="2"/>
  3512. <property name="name" value="sconto"/>
  3513. <property name="size" value="10"/>
  3514. <property name="type" value="decimal"/>
  3515. </element>
  3516. <element action="add" uuid="7034c918-097a-4d1e-857c-db466fed11a3" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="91a15e9b-c71e-4931-b219-009b9310a80d" type="field">
  3517. <property name="decimal" value="2"/>
  3518. <property name="name" value="iva_percentuale"/>
  3519. <property name="size" value="10"/>
  3520. <property name="type" value="decimal"/>
  3521. </element>
  3522. <element action="add" uuid="cccc275f-4a6d-4654-a8c9-8b8c6e59b0ad" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="7034c918-097a-4d1e-857c-db466fed11a3" type="field">
  3523. <property name="decimal" value="2"/>
  3524. <property name="name" value="importo"/>
  3525. <property name="size" value="10"/>
  3526. <property name="type" value="decimal"/>
  3527. </element>
  3528. <element action="add" uuid="270b0887-2c09-454f-a235-e27485cb31fe" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="cccc275f-4a6d-4654-a8c9-8b8c6e59b0ad" type="field">
  3529. <property name="name" value="minuti"/>
  3530. <property name="type" value="integer"/>
  3531. </element>
  3532. <element action="add" uuid="30fe1f83-a681-492c-833a-a5112fb39d67" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="270b0887-2c09-454f-a235-e27485cb31fe" type="field">
  3533. <property name="default" value="0"/>
  3534. <property name="name" value="ordine"/>
  3535. <property name="type" value="integer"/>
  3536. </element>
  3537. <element action="add" uuid="e5d8dcae-ee6d-4ca2-9e6f-6058a137b136" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="30fe1f83-a681-492c-833a-a5112fb39d67" type="field">
  3538. <property name="name" value="nota"/>
  3539. <property name="type" value="text"/>
  3540. </element>
  3541. <element action="add" uuid="3ea317af-cada-4c7d-a139-d13e70456379" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="e5d8dcae-ee6d-4ca2-9e6f-6058a137b136" type="field">
  3542. <property name="name" value="annotazione_id"/>
  3543. <property name="type" value="bigInteger"/>
  3544. <property name="unsigned" value="true"/>
  3545. </element>
  3546. <element action="add" uuid="a3c26231-fc66-4f25-94c9-713e5f5eb354" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="3ea317af-cada-4c7d-a139-d13e70456379" type="field">
  3547. <property name="name" value="segnalazione_id"/>
  3548. <property name="type" value="bigInteger"/>
  3549. <property name="unsigned" value="true"/>
  3550. </element>
  3551. <element action="add" uuid="e398b764-2f39-4b67-ad33-540d847a4d34" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="a3c26231-fc66-4f25-94c9-713e5f5eb354" type="field">
  3552. <property name="name" value="contratto_servizio_id"/>
  3553. <property name="type" value="bigInteger"/>
  3554. <property name="unsigned" value="true"/>
  3555. </element>
  3556. <element action="add" uuid="8f752ece-34ad-4e94-b983-fb7a1d56312f" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="e398b764-2f39-4b67-ad33-540d847a4d34" type="field">
  3557. <property name="name" value="contratto_servizio_riga_id"/>
  3558. <property name="type" value="bigInteger"/>
  3559. <property name="unsigned" value="true"/>
  3560. </element>
  3561. <element action="add" uuid="754d9613-e7f6-45c4-bf5e-14bcdc0d9157" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="8f752ece-34ad-4e94-b983-fb7a1d56312f" type="field">
  3562. <property name="name" value="ordine_lavoro_id"/>
  3563. <property name="type" value="bigInteger"/>
  3564. <property name="unsigned" value="true"/>
  3565. </element>
  3566. <element action="add" uuid="75f07f2c-fe97-4189-a554-789e860950f7" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="754d9613-e7f6-45c4-bf5e-14bcdc0d9157" type="field">
  3567. <property name="name" value="prodotto_id"/>
  3568. <property name="type" value="bigInteger"/>
  3569. <property name="unsigned" value="true"/>
  3570. </element>
  3571. <element action="add" uuid="5c8db971-3b05-45f3-aa33-ef251e579c60" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="75f07f2c-fe97-4189-a554-789e860950f7" type="field">
  3572. <property name="name" value="periodo_da"/>
  3573. <property name="type" value="date"/>
  3574. </element>
  3575. <element action="add" uuid="2b994a3f-71f2-4647-aad6-5743aea49845" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="5c8db971-3b05-45f3-aa33-ef251e579c60" type="field">
  3576. <property name="name" value="periodo_a"/>
  3577. <property name="type" value="date"/>
  3578. </element>
  3579. <element action="add" uuid="d2d85cb5-2cdc-454f-ade7-aa8e38744b37" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="2b994a3f-71f2-4647-aad6-5743aea49845" type="field">
  3580. <property name="name" value="created_at"/>
  3581. <property name="type" value="timestamp"/>
  3582. </element>
  3583. <element action="add" uuid="d591d678-dfea-4105-9e84-6a6786f31125" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" sibling-uuid="d2d85cb5-2cdc-454f-ade7-aa8e38744b37" type="field">
  3584. <property name="name" value="updated_at"/>
  3585. <property name="type" value="timestamp"/>
  3586. </element>
  3587. <element action="add" uuid="72d22456-ccc5-4806-9743-b91635948ea7" parent-uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" type="field">
  3588. <property name="auto-increment" value="true"/>
  3589. <property name="name" value="id"/>
  3590. <property name="primary" value="true"/>
  3591. <property name="required" value="true"/>
  3592. <property name="type" value="bigInteger"/>
  3593. <property name="unique" value="true"/>
  3594. <property name="unsigned" value="true"/>
  3595. </element>
  3596. <element action="add" uuid="e1a2b3f2-59be-4c31-ba82-d1e413cf5cc9" parent-uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" sibling-uuid="72d22456-ccc5-4806-9743-b91635948ea7" type="field">
  3597. <property name="name" value="segnalazione_id"/>
  3598. <property name="type" value="bigInteger"/>
  3599. <property name="unsigned" value="true"/>
  3600. </element>
  3601. <element action="add" uuid="25084066-cd50-4459-8b21-dacdb3a988aa" parent-uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" sibling-uuid="e1a2b3f2-59be-4c31-ba82-d1e413cf5cc9" type="field">
  3602. <property name="name" value="starts_at"/>
  3603. <property name="type" value="dateTime"/>
  3604. </element>
  3605. <element action="add" uuid="310f5a51-80c7-444c-a53d-2b8c9ac5401d" parent-uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" sibling-uuid="25084066-cd50-4459-8b21-dacdb3a988aa" type="field">
  3606. <property name="name" value="ends_at"/>
  3607. <property name="type" value="dateTime"/>
  3608. </element>
  3609. <element action="add" uuid="db734a85-a27a-4254-ae8c-63d472df57a7" parent-uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" sibling-uuid="310f5a51-80c7-444c-a53d-2b8c9ac5401d" type="field">
  3610. <property name="name" value="created_at"/>
  3611. <property name="type" value="timestamp"/>
  3612. </element>
  3613. <element action="add" uuid="f3fe4780-00f5-4a30-86a3-ff7fd643d629" parent-uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" sibling-uuid="db734a85-a27a-4254-ae8c-63d472df57a7" type="field">
  3614. <property name="name" value="updated_at"/>
  3615. <property name="type" value="timestamp"/>
  3616. </element>
  3617. <element action="add" uuid="8ca1b7f6-f59c-4a76-8b55-9eaa5729c588" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3618. <property name="from" value="\App\Models\Fattura"/>
  3619. <property name="inverse-alias" value="user"/>
  3620. <property name="many-inverse" value="false"/>
  3621. <property name="many-owner" value="true"/>
  3622. <property name="onDelete" value="set null"/>
  3623. <property name="owner-alias" value="fatture"/>
  3624. <property name="to" value="\App\Models\User"/>
  3625. </element>
  3626. <element action="add" uuid="a4d4341e-64c7-4fd1-bd5e-b5f457f94e15" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3627. <property name="from" value="\App\Models\Fattura"/>
  3628. <property name="inverse-alias" value="createdBy"/>
  3629. <property name="many-inverse" value="false"/>
  3630. <property name="many-owner" value="true"/>
  3631. <property name="onDelete" value="set null"/>
  3632. <property name="owner-alias" value="fattureCreate"/>
  3633. <property name="to" value="\App\Models\User"/>
  3634. </element>
  3635. <element action="add" uuid="d8d39c1e-5b4e-444d-9fde-e86890e12662" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3636. <property name="from" value="\App\Models\Fattura"/>
  3637. <property name="inverse-alias" value="comune"/>
  3638. <property name="many-inverse" value="false"/>
  3639. <property name="many-owner" value="true"/>
  3640. <property name="owner-alias" value="fatture"/>
  3641. <property name="to" value="\App\Models\Comune"/>
  3642. </element>
  3643. <element action="add" uuid="d69021ca-1036-4659-b1bb-431dd895db02" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3644. <property name="from" value="\App\Models\FatturaRiga"/>
  3645. <property name="inverse-alias" value="fattura"/>
  3646. <property name="many-inverse" value="false"/>
  3647. <property name="many-owner" value="true"/>
  3648. <property name="onDelete" value="cascade"/>
  3649. <property name="owner-alias" value="fatturaRighe"/>
  3650. <property name="to" value="\App\Models\Fattura"/>
  3651. </element>
  3652. <element action="add" uuid="423b7b2d-3041-412c-8078-3720e48429d8" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3653. <property name="from" value="\App\Models\FatturaRiga"/>
  3654. <property name="inverse-alias" value="annotazione"/>
  3655. <property name="many-inverse" value="false"/>
  3656. <property name="many-owner" value="true"/>
  3657. <property name="onDelete" value="set null"/>
  3658. <property name="owner-alias" value="fatturaRighe"/>
  3659. <property name="to" value="\App\Models\Annotazione"/>
  3660. </element>
  3661. <element action="add" uuid="9a930ef5-48ae-4eba-97eb-840f54c682f1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3662. <property name="from" value="\App\Models\FatturaRiga"/>
  3663. <property name="inverse-alias" value="segnalazione"/>
  3664. <property name="many-inverse" value="false"/>
  3665. <property name="many-owner" value="true"/>
  3666. <property name="onDelete" value="set null"/>
  3667. <property name="owner-alias" value="fatturaRighe"/>
  3668. <property name="to" value="\App\Models\Segnalazione"/>
  3669. </element>
  3670. <element action="add" uuid="d34a3b7a-91da-44d1-84d9-fa049248c00d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3671. <property name="from" value="\App\Models\FatturaRiga"/>
  3672. <property name="inverse-alias" value="contrattoServizio"/>
  3673. <property name="many-inverse" value="false"/>
  3674. <property name="many-owner" value="true"/>
  3675. <property name="onDelete" value="set null"/>
  3676. <property name="owner-alias" value="fatturaRighe"/>
  3677. <property name="to" value="\App\Models\ContrattoServizio"/>
  3678. </element>
  3679. <element action="add" uuid="f5fadc49-42d4-4c62-a53e-a293806c8783" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3680. <property name="from" value="\App\Models\FatturaRiga"/>
  3681. <property name="inverse-alias" value="contrattoServizioRiga"/>
  3682. <property name="many-inverse" value="false"/>
  3683. <property name="many-owner" value="true"/>
  3684. <property name="onDelete" value="set null"/>
  3685. <property name="owner-alias" value="fatturaRighe"/>
  3686. <property name="to" value="\App\Models\ContrattoServizioRiga"/>
  3687. </element>
  3688. <element action="add" uuid="6f844493-1bb4-40a9-bd78-97e979015333" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3689. <property name="from" value="\App\Models\FatturaRiga"/>
  3690. <property name="inverse-alias" value="ordineLavoro"/>
  3691. <property name="many-inverse" value="false"/>
  3692. <property name="many-owner" value="true"/>
  3693. <property name="onDelete" value="set null"/>
  3694. <property name="owner-alias" value="fatturaRighe"/>
  3695. <property name="to" value="\App\Models\OrdineLavoro"/>
  3696. </element>
  3697. <element action="add" uuid="72ab57bf-7877-458a-9891-90399ec44941" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3698. <property name="from" value="\App\Models\FatturaRiga"/>
  3699. <property name="inverse-alias" value="prodotto"/>
  3700. <property name="many-inverse" value="false"/>
  3701. <property name="many-owner" value="true"/>
  3702. <property name="onDelete" value="set null"/>
  3703. <property name="owner-alias" value="fatturaRighe"/>
  3704. <property name="to" value="\App\Models\Prodotto"/>
  3705. </element>
  3706. <element action="add" uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3707. <property name="from" value="\App\Models\SegnalazioneSlot"/>
  3708. <property name="inverse-alias" value="segnalazione"/>
  3709. <property name="many-inverse" value="false"/>
  3710. <property name="many-owner" value="true"/>
  3711. <property name="onDelete" value="cascade"/>
  3712. <property name="owner-alias" value="segnalazioneSlots"/>
  3713. <property name="to" value="\App\Models\Segnalazione"/>
  3714. </element>
  3715. <element action="add" uuid="18643b0d-6874-4337-bf61-c6b57630a5da" parent-uuid="8ca1b7f6-f59c-4a76-8b55-9eaa5729c588" type="association-field">
  3716. <property name="from" value="user_id"/>
  3717. <property name="to" value="id"/>
  3718. </element>
  3719. <element action="add" uuid="2660ac06-894c-4de9-a053-c47f76f5894f" parent-uuid="a4d4341e-64c7-4fd1-bd5e-b5f457f94e15" type="association-field">
  3720. <property name="from" value="created_by_id"/>
  3721. <property name="to" value="id"/>
  3722. </element>
  3723. <element action="add" uuid="d954bd57-b5dc-440b-b623-27eda0482e2a" parent-uuid="d8d39c1e-5b4e-444d-9fde-e86890e12662" type="association-field">
  3724. <property name="from" value="comune_id"/>
  3725. <property name="to" value="id"/>
  3726. </element>
  3727. <element action="add" uuid="2099a305-fbd4-4076-a85c-d0d3c96d0a5e" parent-uuid="d69021ca-1036-4659-b1bb-431dd895db02" type="association-field">
  3728. <property name="from" value="fattura_id"/>
  3729. <property name="to" value="id"/>
  3730. </element>
  3731. <element action="add" uuid="2f341028-7afe-4bc0-b028-34052ac55978" parent-uuid="423b7b2d-3041-412c-8078-3720e48429d8" type="association-field">
  3732. <property name="from" value="annotazione_id"/>
  3733. <property name="to" value="id"/>
  3734. </element>
  3735. <element action="add" uuid="fb426b82-ed78-4ad1-89ba-a48a66e19ec2" parent-uuid="9a930ef5-48ae-4eba-97eb-840f54c682f1" type="association-field">
  3736. <property name="from" value="segnalazione_id"/>
  3737. <property name="to" value="id"/>
  3738. </element>
  3739. <element action="add" uuid="9809bfc1-664d-487e-a8b7-54419a018ab7" parent-uuid="d34a3b7a-91da-44d1-84d9-fa049248c00d" type="association-field">
  3740. <property name="from" value="contratto_servizio_id"/>
  3741. <property name="to" value="id"/>
  3742. </element>
  3743. <element action="add" uuid="4d151ce4-d485-4b6e-b558-e6779a406b22" parent-uuid="f5fadc49-42d4-4c62-a53e-a293806c8783" type="association-field">
  3744. <property name="from" value="contratto_servizio_riga_id"/>
  3745. <property name="to" value="id"/>
  3746. </element>
  3747. <element action="add" uuid="80800d7e-bdd2-4c2a-b4d7-b6d92a5ca8bf" parent-uuid="6f844493-1bb4-40a9-bd78-97e979015333" type="association-field">
  3748. <property name="from" value="ordine_lavoro_id"/>
  3749. <property name="to" value="id"/>
  3750. </element>
  3751. <element action="add" uuid="1161edb2-e88f-4df3-a370-160def07904b" parent-uuid="72ab57bf-7877-458a-9891-90399ec44941" type="association-field">
  3752. <property name="from" value="prodotto_id"/>
  3753. <property name="to" value="id"/>
  3754. </element>
  3755. <element action="add" uuid="c75ea229-0d18-4d5e-8c5a-cb7cc0c8dff6" parent-uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" type="association-field">
  3756. <property name="from" value="segnalazione_id"/>
  3757. <property name="to" value="id"/>
  3758. </element>
  3759. </revision>
  3760. <revision uuid="44d9ba7e-a043-4486-b25f-39fad8acf135" date="2026-08-26 15:39:03.736234" exportable="true">
  3761. <element action="add" uuid="04287ee6-13fe-4b73-970a-aedefd569698" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
  3762. <property name="fillableAll" value="as-fillable-all"/>
  3763. <property name="local-name" value="OrdineLavoroRiga"/>
  3764. <property name="name" value="\App\Models\OrdineLavoroRiga"/>
  3765. <property name="namespace" value="\App\Models"/>
  3766. <property name="table" value="ordine_lavoro_riga"/>
  3767. </element>
  3768. <element action="add" uuid="7ed8a1d0-2b4d-418b-b371-60d8ab5c6361" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" type="field">
  3769. <property name="auto-increment" value="true"/>
  3770. <property name="name" value="id"/>
  3771. <property name="primary" value="true"/>
  3772. <property name="required" value="true"/>
  3773. <property name="type" value="bigInteger"/>
  3774. <property name="unique" value="true"/>
  3775. <property name="unsigned" value="true"/>
  3776. </element>
  3777. <element action="add" uuid="bd447a10-6098-49fa-b342-38bfc6c0271d" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="7ed8a1d0-2b4d-418b-b371-60d8ab5c6361" type="field">
  3778. <property name="name" value="ordine_lavoro_id"/>
  3779. <property name="type" value="bigInteger"/>
  3780. <property name="unsigned" value="true"/>
  3781. </element>
  3782. <element action="add" uuid="05297563-07a0-4cbb-876d-cf811973af8b" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="bd447a10-6098-49fa-b342-38bfc6c0271d" type="field">
  3783. <property name="name" value="prodotto_id"/>
  3784. <property name="type" value="bigInteger"/>
  3785. <property name="unsigned" value="true"/>
  3786. </element>
  3787. <element action="add" uuid="dddc3ab2-3d27-4954-abb0-7add4bd39045" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="05297563-07a0-4cbb-876d-cf811973af8b" type="field">
  3788. <property name="name" value="descrizione"/>
  3789. <property name="type" value="string"/>
  3790. </element>
  3791. <element action="add" uuid="6df25b5a-0b5b-4b75-9f1f-de5b1b33fc81" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="dddc3ab2-3d27-4954-abb0-7add4bd39045" type="field">
  3792. <property name="decimal" value="2"/>
  3793. <property name="name" value="quantita"/>
  3794. <property name="size" value="10"/>
  3795. <property name="type" value="decimal"/>
  3796. </element>
  3797. <element action="add" uuid="4d89aa02-bd75-470c-95b2-6ed1086fecbb" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="6df25b5a-0b5b-4b75-9f1f-de5b1b33fc81" type="field">
  3798. <property name="name" value="unita_misura"/>
  3799. <property name="type" value="string"/>
  3800. </element>
  3801. <element action="add" uuid="9d4792f1-0b30-48f8-ac62-4be597728e15" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="4d89aa02-bd75-470c-95b2-6ed1086fecbb" type="field">
  3802. <property name="decimal" value="2"/>
  3803. <property name="name" value="prezzo_unitario"/>
  3804. <property name="size" value="10"/>
  3805. <property name="type" value="decimal"/>
  3806. </element>
  3807. <element action="add" uuid="b1bec05e-c03e-4cd5-abb2-56a077292f3a" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="9d4792f1-0b30-48f8-ac62-4be597728e15" type="field">
  3808. <property name="decimal" value="2"/>
  3809. <property name="name" value="sconto"/>
  3810. <property name="size" value="10"/>
  3811. <property name="type" value="decimal"/>
  3812. </element>
  3813. <element action="add" uuid="1411b9dc-1fce-4a6d-a961-0e631ebf42da" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="b1bec05e-c03e-4cd5-abb2-56a077292f3a" type="field">
  3814. <property name="default" value="0"/>
  3815. <property name="name" value="ordine"/>
  3816. <property name="type" value="integer"/>
  3817. </element>
  3818. <element action="add" uuid="2c203621-a3dc-4adf-97e9-387293ec5d2f" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="1411b9dc-1fce-4a6d-a961-0e631ebf42da" type="field">
  3819. <property name="name" value="note_private"/>
  3820. <property name="type" value="text"/>
  3821. </element>
  3822. <element action="add" uuid="6cc655ed-c6b9-45a6-b078-1dbae13e93c6" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="2c203621-a3dc-4adf-97e9-387293ec5d2f" type="field">
  3823. <property name="decimal" value="2"/>
  3824. <property name="name" value="tempo_stimato"/>
  3825. <property name="size" value="10"/>
  3826. <property name="type" value="decimal"/>
  3827. </element>
  3828. <element action="add" uuid="15b7da2d-8558-47b6-bbf2-88556147d03d" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="6cc655ed-c6b9-45a6-b078-1dbae13e93c6" type="field">
  3829. <property name="name" value="created_at"/>
  3830. <property name="type" value="timestamp"/>
  3831. </element>
  3832. <element action="add" uuid="fea3f591-b802-401b-b494-0648197ec020" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" sibling-uuid="15b7da2d-8558-47b6-bbf2-88556147d03d" type="field">
  3833. <property name="name" value="updated_at"/>
  3834. <property name="type" value="timestamp"/>
  3835. </element>
  3836. <element action="update" uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3837. <property name="owner-alias" value="righe"/>
  3838. </element>
  3839. <element action="update" uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3840. <property name="owner-alias" value="todos"/>
  3841. </element>
  3842. <element action="update" uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3843. <property name="owner-alias" value="todos"/>
  3844. </element>
  3845. <element action="update" uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3846. <property name="owner-alias" value="righe"/>
  3847. </element>
  3848. <element action="update" uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3849. <property name="owner-alias" value="righe"/>
  3850. </element>
  3851. <element action="update" uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3852. <property name="owner-alias" value="todos"/>
  3853. </element>
  3854. <element action="update" uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3855. <property name="owner-alias" value="todos"/>
  3856. </element>
  3857. <element action="update" uuid="d69021ca-1036-4659-b1bb-431dd895db02" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3858. <property name="owner-alias" value="righe"/>
  3859. </element>
  3860. <element action="update" uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3861. <property name="owner-alias" value="slots"/>
  3862. </element>
  3863. <element action="add" uuid="1e8af9f9-8d2e-4c16-8530-28e43a622c6d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3864. <property name="from" value="\App\Models\OrdineLavoroRiga"/>
  3865. <property name="inverse-alias" value="ordineLavoro"/>
  3866. <property name="many-inverse" value="false"/>
  3867. <property name="many-owner" value="true"/>
  3868. <property name="onDelete" value="cascade"/>
  3869. <property name="owner-alias" value="righe"/>
  3870. <property name="to" value="\App\Models\OrdineLavoro"/>
  3871. </element>
  3872. <element action="add" uuid="350c8c4f-877e-4925-8385-b750d5f625da" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
  3873. <property name="from" value="\App\Models\OrdineLavoroRiga"/>
  3874. <property name="inverse-alias" value="prodotto"/>
  3875. <property name="many-inverse" value="false"/>
  3876. <property name="many-owner" value="true"/>
  3877. <property name="onDelete" value="set null"/>
  3878. <property name="owner-alias" value="ordineLavoroRigas"/>
  3879. <property name="to" value="\App\Models\Prodotto"/>
  3880. </element>
  3881. <element action="add" uuid="bf0d5c13-4e24-4438-8e1f-dcc24809cbc6" parent-uuid="1e8af9f9-8d2e-4c16-8530-28e43a622c6d" type="association-field">
  3882. <property name="from" value="ordine_lavoro_id"/>
  3883. <property name="to" value="id"/>
  3884. </element>
  3885. <element action="add" uuid="6b67c71b-1af2-4f55-9a45-b7bdfe642ad9" parent-uuid="350c8c4f-877e-4925-8385-b750d5f625da" type="association-field">
  3886. <property name="from" value="prodotto_id"/>
  3887. <property name="to" value="id"/>
  3888. </element>
  3889. </revision>
  3890. </migrations>
  3891. </module>
  3892. <visual-data>
  3893. <association uuid="05c3f975-b61c-490e-aa04-080772b499ad" color="#969696"/>
  3894. <association uuid="1e8af9f9-8d2e-4c16-8530-28e43a622c6d" color="#969696"/>
  3895. <association uuid="299d534d-b5ef-411c-b66b-f4adaaa3b4f1" color="#969696"/>
  3896. <association uuid="2fa65d03-8ddb-413f-8064-798860928786" color="#969696"/>
  3897. <association uuid="345b5351-9f8a-4d02-9192-1bb27645761d" color="#969696"/>
  3898. <association uuid="350c8c4f-877e-4925-8385-b750d5f625da" color="#969696"/>
  3899. <association uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" color="#969696"/>
  3900. <association uuid="3842d2b3-d137-47bc-9a10-14b7a860c153" color="#969696"/>
  3901. <association uuid="3d14fd5b-7f78-49e4-831f-a98aa484a94f" color="#969696"/>
  3902. <association uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" color="#969696"/>
  3903. <association uuid="41971b51-8523-4c42-83a6-4ea29a618e4c" color="#969696"/>
  3904. <association uuid="423b7b2d-3041-412c-8078-3720e48429d8" color="#969696"/>
  3905. <association uuid="4399e41c-477e-44d7-91db-b1cd4614f294" caption1-position-x="0" caption1-position-y="0" center-position-x="0" center-position-y="0" color="#969696"/>
  3906. <association uuid="4e4e7f6b-b25f-4a8a-8c8d-ab0e6ec93db7" color="#969696"/>
  3907. <association uuid="5c8d1dc1-15ed-4379-addb-6b0addcd047e" color="#969696"/>
  3908. <association uuid="5f4ca39e-40ba-4157-bf4c-603b7469b044" color="#969696"/>
  3909. <association uuid="64df4dd6-cb23-408a-a4f1-e1a723103aa0" color="#969696"/>
  3910. <association uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" color="#969696"/>
  3911. <association uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" color="#969696"/>
  3912. <association uuid="6f844493-1bb4-40a9-bd78-97e979015333" color="#969696"/>
  3913. <association uuid="6faa9818-b5b6-4eab-96b6-6eaf56d1de79" color="#969696"/>
  3914. <association uuid="719929c1-e0fe-4feb-950a-ba417c35a60c" color="#969696"/>
  3915. <association uuid="72ab57bf-7877-458a-9891-90399ec44941" color="#969696"/>
  3916. <association uuid="787d90ec-5676-4749-9b36-cea959c6793b" caption1-position-x="0" caption1-position-y="0" center-position-x="0" center-position-y="-20" color="#969696"/>
  3917. <association uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" color="#969696"/>
  3918. <association uuid="8399970c-2d0b-403e-996b-e86248cb3bc5" color="#969696"/>
  3919. <association uuid="86aded2a-2e4e-4fc2-8702-5191cd073056" color="#969696"/>
  3920. <association uuid="8ca1b7f6-f59c-4a76-8b55-9eaa5729c588" color="#969696"/>
  3921. <association uuid="9a930ef5-48ae-4eba-97eb-840f54c682f1" color="#969696"/>
  3922. <association uuid="9d4fa7d0-23be-4bb2-99bd-67797c3244c0" color="#969696"/>
  3923. <association uuid="a005da89-ed4b-4145-bca2-b27aaa8fce4b" color="#969696"/>
  3924. <association uuid="a4d4341e-64c7-4fd1-bd5e-b5f457f94e15" color="#969696"/>
  3925. <association uuid="ad855143-f6b1-4d71-9d42-409e76e1efb7" color="#969696"/>
  3926. <association uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" color="#969696"/>
  3927. <association uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" color="#969696"/>
  3928. <association uuid="b4bf7317-84eb-4d04-889e-5a8fcf84b12f" color="#969696"/>
  3929. <association uuid="bf45bb05-0679-49af-a7e9-9ae9422675ab" color="#969696"/>
  3930. <association uuid="c227ab02-8c3d-4a91-88a1-51e115f830a0" color="#969696"/>
  3931. <association uuid="d34a3b7a-91da-44d1-84d9-fa049248c00d" color="#969696"/>
  3932. <association uuid="d49573ad-aa71-43d3-a053-0858f655cd29" color="#969696"/>
  3933. <association uuid="d586b98c-7daa-49d4-ada1-8c2c9223fb66" color="#969696"/>
  3934. <association uuid="d69021ca-1036-4659-b1bb-431dd895db02" color="#969696"/>
  3935. <association uuid="d8d39c1e-5b4e-444d-9fde-e86890e12662" color="#969696"/>
  3936. <association uuid="e29244ac-f1e5-4629-bf06-2d29d4a7664c" color="#969696"/>
  3937. <association uuid="eb76c46e-4fae-41a5-8cca-e38e69788e6d" color="#969696"/>
  3938. <association uuid="f5d31adf-5971-42f7-90bf-41571fe64218" color="#969696"/>
  3939. <association uuid="f5fadc49-42d4-4c62-a53e-a293806c8783" color="#969696"/>
  3940. <association uuid="faaed052-f628-4ae7-8f52-b3614fad893e" color="#969696"/>
  3941. <association uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" color="#969696"/>
  3942. <entity uuid="04287ee6-13fe-4b73-970a-aedefd569698" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="14" position-y="769" size-x="0" size-x2="139" size-y="0" size-y2="87"/>
  3943. <entity uuid="05f7d8b0-095f-456c-96ec-3980b0435855" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="377" position-y="460" size-x="0" size-x2="137" size-y="0" size-y2="73"/>
  3944. <entity uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="1311" position-y="581" size-x="0" size-x2="119" size-y="0" size-y2="101"/>
  3945. <entity uuid="273deed0-9f6e-4aca-b64b-22a657db2a21" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="877" position-y="547" size-x="0" size-x2="134" size-y="0" size-y2="60"/>
  3946. <entity uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" bg-color="#FFFFFF" hdr-color="#FFE762" position-x="1300" position-y="299" size-x="0" size-x2="121" size-y="0" size-y2="115"/>
  3947. <entity uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="1028" position-y="306" size-x="0" size-x2="181" size-y="0" size-y2="283"/>
  3948. <entity uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="40" position-y="440" size-x="0" size-x2="137" size-y="0" size-y2="213"/>
  3949. <entity uuid="56185713-1439-4bd9-81df-6d5339d066ce" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="35" position-y="36" size-x="0" size-x2="142" size-y="0" size-y2="157"/>
  3950. <entity uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="643" position-y="308" size-x="0" size-x2="162" size-y="0" size-y2="227"/>
  3951. <entity uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="809" position-y="25" size-x="0" size-x2="141" size-y="0" size-y2="157"/>
  3952. <entity uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" bg-color="#FFFFFF" hdr-color="#FFE762" position-x="1301" position-y="144" size-x="0" size-x2="119" size-y="0" size-y2="87"/>
  3953. <entity uuid="68922686-8dc2-403e-a281-a0efcdf39a82" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="187" position-y="861" size-x="0" size-x2="119" size-y="0" size-y2="59"/>
  3954. <entity uuid="6cc482e6-604b-4e73-9870-36f4f2711362" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="422" position-y="865" size-x="0" size-x2="175" size-y="0" size-y2="339"/>
  3955. <entity uuid="735de4a0-df7b-48d1-a686-8b7b88229151" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="647" position-y="26" size-x="0" size-x2="119" size-y="0" size-y2="143"/>
  3956. <entity uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="807" position-y="634" size-x="0" size-x2="141" size-y="0" size-y2="199"/>
  3957. <entity uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="1301" position-y="697" size-x="0" size-x2="119" size-y="0" size-y2="199"/>
  3958. <entity uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="192" position-y="657" size-x="0" size-x2="177" size-y="0" size-y2="185"/>
  3959. <entity uuid="98806966-1270-452c-b1ab-cdae6e0016b6" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="560" position-y="569" size-x="0" size-x2="139" size-y="0" size-y2="60"/>
  3960. <entity uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="829" position-y="310" size-x="0" size-x2="141" size-y="0" size-y2="157"/>
  3961. <entity uuid="b21d156e-828b-49fe-87a8-659eb8411896" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="273" position-y="23" size-x="0" size-x2="177" size-y="0" size-y2="297"/>
  3962. <entity uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="221" position-y="422" size-x="0" size-x2="133" size-y="0" size-y2="115"/>
  3963. <entity uuid="c0890191-d438-495f-819a-1a045d21a357" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="967" position-y="709" size-x="0" size-x2="158" size-y="0" size-y2="171"/>
  3964. <entity uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="1482" position-y="44" size-x="0" size-x2="20" size-y="0" size-y2="20"/>
  3965. <entity uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="513" position-y="274" size-x="0" size-x2="119" size-y="0" size-y2="157"/>
  3966. <entity uuid="c9dad18d-0272-4878-8404-fd0db896b447" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="1132" position-y="623" size-x="0" size-x2="164" size-y="0" size-y2="269"/>
  3967. <entity uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="1030" position-y="25" size-x="0" size-x2="159" size-y="0" size-y2="241"/>
  3968. <entity uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" bg-color="#FFFFFF" hdr-color="#FFE762" position-x="1300" position-y="433" size-x="0" size-x2="119" size-y="0" size-y2="129"/>
  3969. <entity uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="693" position-y="904" size-x="0" size-x2="137" size-y="0" size-y2="101"/>
  3970. <entity uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="481" position-y="25" size-x="0" size-x2="119" size-y="0" size-y2="185"/>
  3971. <entity uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" bg-color="#FFFFFF" hdr-color="#FFE762" position-x="1301" position-y="-11" size-x="0" size-x2="119" size-y="0" size-y2="101"/>
  3972. <entity uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" bg-color="#FFFFFF" hdr-color="#D2D2D2" position-x="675" position-y="633" size-x="0" size-x2="119" size-y="0" size-y2="199"/>
  3973. <many-to-many-association uuid="2f367518-de50-431b-a35b-845be0f0d6a1" color="#969696"/>
  3974. <many-to-many-association uuid="b628247f-6792-430c-970b-aa651c7f7870" color="#969696"/>
  3975. <module uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" bg-color="#EAE4F1" position-x="34" position-y="55" size-x="11" size-x2="1651" size-y="22" size-y2="1248"/>
  3976. <project uuid="3072e02c-7554-4faa-a6bb-1bdf47958cd4" size-x="27" size-x2="1735" size-y="17" size-y2="1353"/>
  3977. </visual-data>
  3978. </skipper>