| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978 |
- <?xml version="1.0"?>
- <skipper version="3.2.25.1702" mvc="Laravel" orm="Laravel" name="MyAzienda" uuid="3072e02c-7554-4faa-a6bb-1bdf47958cd4">
- <orm-attributes>
- <attribute name="migrations-path">database/migrations</attribute>
- </orm-attributes>
- <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">
- <entity name="\App\Models\User" local-name="User" namespace="\App\Models" uuid="56185713-1439-4bd9-81df-6d5339d066ce">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="0a6f5cb1-6847-45b2-9241-8ab815e1c380"/>
- <field name="nome" type="string" uuid="7146ddab-7bf0-4c4a-9cb9-0a80eedba7fd"/>
- <field name="cognome" type="string" uuid="5d3e9adc-9d0e-4b7c-abef-2b50ec57333c"/>
- <field name="email" type="string" uuid="097ab2c7-9646-43ff-bc82-8cc0c277d909"/>
- <field name="telefono" type="string" uuid="2cb16ee6-fd81-4981-95be-d88191274a0d"/>
- <field name="password" type="string" uuid="ca5b3607-4149-4aa9-9fe9-ed3f9ea4b79b"/>
- <field name="azienda_id" type="bigInteger" unsigned="true" uuid="a71fea94-0e25-4722-a9f4-a764b739a498"/>
- <field name="email_verified_at" type="timestamp" uuid="e9cfc935-4b99-4bc8-be16-c582001b7cf4"/>
- <field name="remember_token" type="string" uuid="43a000b7-9f98-4fbd-a88d-c6ea908cb2cc"/>
- <field name="api_token" type="string" uuid="e1c61394-f57e-4941-aeb7-04fb368733cd"/>
- <field name="two_factor_secret" type="text" uuid="9f263de8-d827-4458-abac-08dc31740853"/>
- <field name="two_factor_recovery_codes" type="text" uuid="07ddc14d-0638-4998-9c0f-61e6b4c275ef"/>
- <field name="two_factor_confirmed_at" type="timestamp" uuid="7e1530aa-7374-4465-af8d-0aed05196cf6"/>
- <field name="is_gruppo" type="boolean" default="0" uuid="704eb3e5-b120-4303-b675-f3b7e051b24d"/>
- <field name="is_azienda" type="boolean" default="0" uuid="2e3ab400-2d56-48bd-b868-74e5494168cd"/>
- <field name="label_gruppo" type="string" uuid="b575155d-c744-4622-92bb-d28a36710267"/>
- <field name="componenti_gruppo" type="json" uuid="c26ef028-e3f3-4dfe-b949-397da060e974"/>
- <field name="ragione_sociale" type="string" uuid="ab3e9eee-6cc3-4b04-923d-c9eaeb067f3a"/>
- <field name="piva" type="string" uuid="24b53519-f7ed-4605-97ed-0fe8007aec6d"/>
- <field name="cod_fiscale" type="string" uuid="54f8f89b-8f1d-4350-b6be-f3d442bd097b"/>
- <field name="indirizzo" type="string" uuid="a904fce5-68f9-49c5-9c4b-32cedf9bb6bb"/>
- <field name="note" type="text" uuid="75bbae31-8850-4bd7-ad84-264a0a9ef52d"/>
- <field name="dominio_email" type="string" uuid="c05381f2-589c-4fc3-837d-ae38b097500c"/>
- <field name="comune_id" type="bigInteger" unsigned="true" uuid="519bbe2d-e5b8-49c0-b964-08644a0c119f"/>
- <field name="responsabile_azienda" type="boolean" default="0" uuid="33ec009d-c086-49d1-9d60-78edb4e17fc7"/>
- <field name="created_at" type="timestamp" uuid="40919a29-47f6-4516-9c3d-917ed2c9afe6"/>
- <field name="updated_at" type="timestamp" uuid="ef88ffd6-4374-4238-99c9-9cc9596a093e"/>
- <orm-attributes>
- <attribute name="table">users</attribute>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="extends">\Illuminate\Foundation\Auth\User</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="comune_id" to="id" uuid="f66c0c1c-a961-4b58-b5b9-46c97265ead5"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="azienda_id" to="id" uuid="867d2980-d54c-4b5c-8ab6-c07f0783c368"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\Segnalazione" local-name="Segnalazione" namespace="\App\Models" uuid="b21d156e-828b-49fe-87a8-659eb8411896">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="d15505d1-a284-4cf1-94b0-70d0f5788243"/>
- <field name="user_id" description="chi ha fatto la segnalazione" type="bigInteger" unsigned="true" uuid="ecd5a597-63db-4120-8e3f-0c4b6fff198d"/>
- <field name="assegnata_a_id" description="a chi è assegnata la segnalazione" type="bigInteger" unsigned="true" uuid="9157dc7c-305b-4227-8b05-3992650c5cfc"/>
- <field name="azienda_id" type="bigInteger" unsigned="true" uuid="76454f4a-a34f-43c3-9ae6-e6cbaedcf788"/>
- <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="b214ffbc-1d19-4585-8ba6-40f9481d9267"/>
- <field name="contratto_servizio_todo_id" type="bigInteger" unsigned="true" uuid="e483a339-f493-4b94-8f93-a2b661231ee5"/>
- <field name="ordine_lavoro_id" type="bigInteger" unsigned="true" uuid="3cef7379-2ba5-4b50-9da8-6afcf2c66341"/>
- <field name="acquisto_servizio_id" type="bigInteger" unsigned="true" uuid="22a1f5dd-b956-4ee7-bf73-062e66d3a5b0"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="7158b094-0bec-4edb-914e-2457f0424463"/>
- <field name="numero" type="integer" uuid="992bbdcc-c8a3-49a9-a95d-c28287148b38"/>
- <field name="titolo" type="string" uuid="93e92649-f52f-4db5-baad-a4abf8e20f62"/>
- <field name="stato" type="string" uuid="86938116-9b87-4051-bc45-3009fe9cbf83"/>
- <field name="priorita" type="string" uuid="47ea6f64-0734-42ae-9374-bfe268ac2fca"/>
- <field name="tipo" type="string" uuid="16f71b45-d45e-490a-9985-f19bed3c4d1c"/>
- <field name="token" type="string" uuid="e5bd4274-35d3-4bff-9643-31c0b84ef421"/>
- <field name="meta" type="json" uuid="feb6065e-dfd6-47d6-a5bb-1d54c5d99050"/>
- <field name="origine" type="string" uuid="330da781-7ebb-4a50-b6fd-b626f954735f"/>
- <field name="tempo_stimato" type="decimal" size="10" uuid="91880b18-1a17-4b31-85e5-61ae81e6aba2">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="created_at" type="timestamp" uuid="d0040cc6-db11-4587-beed-bf4313681d57"/>
- <field name="updated_at" type="timestamp" uuid="3a3d74a0-b87a-40b2-aa1d-691d9ff66856"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">segnalazione</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="assegnata_a_id" to="id" uuid="d432694a-89df-447e-801d-24b276e2ac8c"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="user_id" to="id" uuid="08699248-9392-4b75-b16b-ade34b487929"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="azienda_id" to="id" uuid="ff304b0f-2ee3-4290-8f70-d512cc0cedbe"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_servizio_id" to="id" uuid="f88439b2-fde3-4839-896b-4fc572f767e0"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="ordine_lavoro_id" to="id" uuid="b9b6e825-5ce8-4473-be84-81c0df564f89"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_servizio_todo_id" to="id" uuid="14be7b69-4db0-40ea-bb4b-c32bec31da91"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="acquisto_servizio_id" to="id" uuid="e298ce6f-7e2c-4b7e-80e3-41c8cd31be5e"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="prodotto_id" to="id" uuid="dfe269b5-36b7-4a6a-ad73-5195877c88f3"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\ConfiguraSegnalazione" local-name="ConfiguraSegnalazione" namespace="\App\Models" uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="b82082e0-0b90-471d-9698-545b58e84b5a"/>
- <field name="label" type="string" uuid="c0b1bbac-3561-4290-8d26-0f80e005ddf9"/>
- <field name="descrizione" type="text" uuid="27bba23a-4ee0-47bf-bb70-b7029dbacd8a"/>
- <field name="gruppo" type="string" uuid="59cd917a-97b3-4227-badc-ee7604c971f7"/>
- <field name="key" type="string" uuid="436d6a3f-fc22-4fe5-a91f-e2c393ed7780"/>
- <field name="value" type="string" uuid="6122590b-dc17-4bf2-8497-c5b17bacaacd"/>
- <field name="type" type="string" uuid="b7ab3e5d-4482-483b-8cea-a26de1feda03"/>
- <field name="order" type="integer" uuid="e4996d7f-4473-478d-8fea-5936deb136bd"/>
- <field name="icona" type="string" uuid="b9635a0a-85b2-467a-b2dc-89cd63ee0c4d"/>
- <field name="colore" type="string" uuid="c6811c53-5d36-454d-b43f-5df0157e39c2"/>
- <field name="opzioni" type="json" uuid="1038885e-eca5-4f75-a412-81059913bfe5"/>
- <field name="created_at" type="timestamp" uuid="00cd7459-b3a0-482c-83a4-7568de2c7124"/>
- <field name="updated_at" type="timestamp" uuid="93b12b98-06a8-4563-9e4d-553b532d39db"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">configura_segnalazione</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\Annotazione" local-name="Annotazione" namespace="\App\Models" uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="0437cbe3-b2c4-4fa6-8c9c-7df74e17a5e2"/>
- <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="a55daaa7-8ba7-4bb0-83dd-dcfdb8036968"/>
- <field name="user_id" type="bigInteger" unsigned="true" uuid="734b6cb6-58f7-4a2b-b27d-ab8dc46cf714"/>
- <field name="text" type="longText" uuid="f748b6d3-a6af-40b0-a522-4447364a2948"/>
- <field name="tempo_minuti" type="integer" default="0" uuid="b3f34db1-e2e5-4426-a960-51eb2d8ca0b1"/>
- <field name="tempo_data" type="dateTime" uuid="f305a718-29d3-4bd5-8da9-619db3671251">
- <orm-attributes>
- <attribute name="cast">datetime</attribute>
- <attribute name="castFormat">d/m/Y H:i</attribute>
- </orm-attributes>
- </field>
- <field name="costo" type="decimal" size="10" uuid="330f67c6-9da7-4130-8907-9c1339a62723">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="costo_descrizione" type="text" uuid="2d89a9fb-9229-412e-b6df-9b35a19f14a5"/>
- <field name="non_fatturare" type="boolean" default="0" uuid="d0ffea66-3d82-495a-bbc8-f7cc443bae31"/>
- <field name="costo_uscita" type="decimal" default="0" uuid="c7582fe6-bc2e-4eee-ad56-9593b156d48c"/>
- <field name="riservata" type="boolean" default="1" uuid="c48733ff-ec02-4aa0-be7c-25be727c3c1e"/>
- <field name="riferimento" type="string" uuid="dca8d620-9b45-4a1f-96e4-0d76392ac410"/>
- <field name="email" type="string" uuid="e2ca0f54-426d-4977-b729-fd007dee6f64"/>
- <field name="telefono" type="string" uuid="7b367191-cdfd-465f-8efe-ba0922fa32ff"/>
- <field name="created_at" type="timestamp" uuid="d0ae0044-ec8e-4aee-8cb5-84d5a663c57a"/>
- <field name="updated_at" type="timestamp" uuid="80c6b3cc-d201-4972-8b42-e25cbee8b615"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">annotazione</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="segnalazione_id" to="id" uuid="76a290ad-9338-4ae7-a168-dd924d4c0b9f"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="user_id" to="id" uuid="1fb9c039-f291-4e4e-ac2f-c31f14db295b"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\AllegatoAnnotazione" local-name="AllegatoAnnotazione" namespace="\App\Models" uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="30f3fa1d-7834-42da-bbfc-3a60ddad4034"/>
- <field name="annotazione_id" type="bigInteger" unsigned="true" uuid="d48cb9c0-3907-4472-88a5-44774d686d37"/>
- <field name="nome" type="string" uuid="96220dc4-79f3-4e79-8024-cd4a976f443a"/>
- <field name="descrizione" type="string" uuid="97adca03-8802-4042-8f00-ff79b3910b0d"/>
- <field name="path_file" type="string" uuid="14d15c1e-3bfe-45b8-8d74-5ddd222ff3b5"/>
- <field name="created_at" type="timestamp" uuid="aa099fda-2af1-4c9e-8e79-3020bff7acde"/>
- <field name="updated_at" type="timestamp" uuid="65bce51b-82df-4a22-a870-38aa7dc6e304"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">allegato_annotazione</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="annotazione_id" to="id" uuid="c74b78f8-307e-4473-a96d-263d5f8908d2"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\Provincia" local-name="Provincia" namespace="\App\Models" uuid="f1331b94-8ccf-4328-bc32-bffdc732572e">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="e489d50b-7a4e-4869-b62a-6e552e4a1140"/>
- <field name="nazione_id" type="bigInteger" unsigned="true" uuid="a51b37ab-f251-4222-b5cd-09de8f6032ea"/>
- <field name="nome" type="string" uuid="673adc64-b483-4df0-b282-74322004a246"/>
- <field name="sigla" type="string" uuid="640d52fb-d124-4ee8-a184-52f855e4153b"/>
- <field name="created_at" type="timestamp" uuid="7f7a24b6-229f-4acf-aef3-0ec512768d24"/>
- <field name="updated_at" type="timestamp" uuid="62d0de6c-f896-491b-99db-1840ede2d1fa"/>
- <orm-attributes>
- <attribute name="table">provincia</attribute>
- <attribute name="fillableAll">as-fillable-all</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="nazione_id" to="id" uuid="8f51c513-0361-4147-b7ac-26b56c42011d"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\Nazione" local-name="Nazione" namespace="\App\Models" uuid="6128d2f6-88d0-472b-bc71-0a9f49370847">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="67af633f-42c4-416d-ab1f-6b1c8a36dd82"/>
- <field name="nome" type="string" uuid="c98ab5d4-058e-46c3-ae49-5cf78478c8e0"/>
- <field name="sigla" type="string" uuid="7ed5c802-64fb-4bba-aca9-0de4a1d1b099"/>
- <field name="created_at" type="timestamp" uuid="b7cb1d70-b9a6-441a-aacd-7cd963cbc371"/>
- <field name="updated_at" type="timestamp" uuid="b40e30e1-a742-4297-932c-e28291e0a8e4"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">nazione</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\Comune" local-name="Comune" namespace="\App\Models" uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="656af606-c65b-4b92-bac2-4e8a23d286e4"/>
- <field name="provincia_id" type="bigInteger" unsigned="true" uuid="e52e1b52-9dd3-4f50-ade3-a01755961201"/>
- <field name="nazione_id" type="bigInteger" unsigned="true" uuid="366b0dc8-c30b-4649-a1a2-3819e803595b"/>
- <field name="nome" type="string" uuid="02c5a258-0c72-47fc-8a1f-0b0af6c37e38"/>
- <field name="codice_catastale" type="string" uuid="efc61454-f98b-49aa-98f2-3e6014129b09"/>
- <field name="created_at" type="timestamp" uuid="8f5ae8e3-acaf-40ea-8eba-3139d76454a7"/>
- <field name="updated_at" type="timestamp" uuid="e603d21d-ddb5-46bd-929f-94a78dc0c5f5"/>
- <orm-attributes>
- <attribute name="table">comune</attribute>
- <attribute name="fillableAll">as-fillable-all</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="provincia_id" to="id" uuid="bb143e14-84bd-4e4a-bc86-6045f340856b"/>
- </association>
- <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">
- <association-field from="nazione_id" to="id" uuid="3bf703ca-9546-4b79-85c0-8febb961d821"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\Config" local-name="Config" namespace="\App\Models" uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b">
- <field name="key" type="string" required="true" unique="true" primary="true" uuid="badce0d4-64dd-43b2-be60-820ff13951fa"/>
- <field name="group" type="string" uuid="8ab75bd9-b755-4637-a230-9e2d5de6ac55"/>
- <field name="display_name" type="string" uuid="4210e393-7c3b-4982-8bee-30238073d5bc"/>
- <field name="value" type="longText" uuid="e9019a5d-d4b6-4bf5-a014-7963da6341f8"/>
- <field name="order" type="integer" uuid="9e54a33a-8637-4273-8027-e0aecc53eeb6"/>
- <field name="type" type="string" uuid="e04ce407-d9d0-4c74-9a8d-721deeb63c3c"/>
- <field name="created_at" type="timestamp" uuid="fb7f6e10-5782-4506-9258-4b6185860d71"/>
- <field name="updated_at" type="timestamp" uuid="370dbe57-9a63-4af4-ad81-b7c7647c273c"/>
- <orm-attributes>
- <attribute name="table">config</attribute>
- <attribute name="fillableAll">as-fillable-all</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\ConfigNotifiche" local-name="ConfigNotifiche" namespace="\App\Models" uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="ace37544-4c55-4ca9-8144-2da585fae3d6"/>
- <field name="event" type="string" uuid="7ad720b4-ab7e-43a5-b29a-4f434a3d886b"/>
- <field name="users" type="json" uuid="973a3230-ede5-4efd-9cfb-84e1c19876b9"/>
- <field name="is_attivo" type="boolean" default="1" uuid="72f71f81-6a3e-4ad9-8950-fe2a8542d25c"/>
- <field name="created_at" type="timestamp" uuid="2917737f-d22e-4bcb-b966-ebf834a6d20e"/>
- <field name="updated_at" type="timestamp" uuid="573df29f-6ff9-4ffc-897e-c72069ab4200"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">config_notifiche</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\Prodotto" local-name="Prodotto" namespace="\App\Models" uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="cd5804ad-d5cc-4203-b38a-e5cfa3ebacac"/>
- <field name="codice" type="string" uuid="1bae7c61-7d9b-4795-97ee-fbff819cb95a"/>
- <field name="nome" type="string" uuid="5bd47d50-0113-40ed-b737-aa03f5f9401b"/>
- <field name="descrizione" type="text" uuid="8aae2f86-f5c8-4281-83fd-b46c70228e53"/>
- <field name="tipo" type="string" uuid="c7f8fdd4-0962-4932-bc9a-ca7b96b9b2d8"/>
- <field name="unita_misura" type="string" uuid="30a50b48-7975-46d3-82e4-05e90afa3a6e"/>
- <field name="prezzo" type="decimal" size="10" uuid="fcdc4a08-e2d3-4fb5-baf2-a90df6fbbb04">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="periodo" type="string" uuid="81b8c54f-f859-4ff3-9ce0-ffbade00aa28"/>
- <field name="attivo" type="boolean" default="1" uuid="a40f0518-a638-4247-90a1-6aeac1701428"/>
- <field name="prenotabile_online" type="boolean" default="0" uuid="1df3d6c4-020e-48e8-b944-aee2698e66a6"/>
- <field name="meta" type="json" uuid="693b4419-0151-4d8b-89a9-ab7b2ce17f9d"/>
- <field name="created_at" type="timestamp" uuid="5126112e-189a-4b54-9ff5-cc44da7d60fe"/>
- <field name="updated_at" type="timestamp" uuid="e3870d5f-497d-41b4-8e78-09ba31fc34f8"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">prodotto</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\ContrattoServizio" local-name="ContrattoServizio" namespace="\App\Models" uuid="58092d28-4a8e-4122-8204-5e009fc16ce6">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="2fc7e24f-923a-49ea-acb2-82d9a15535a2"/>
- <field name="user_id" type="bigInteger" unsigned="true" uuid="a430d266-f99f-4e48-be62-de6daddf22ab"/>
- <field name="contratto_template_id" type="bigInteger" unsigned="true" uuid="a97d83fa-0893-4bcc-a1d4-3fba9849789a"/>
- <field name="nome" type="string" uuid="94ee2223-9e46-43e2-989b-f75e6a6ce3ca"/>
- <field name="costo" type="decimal" size="10" uuid="140deaa1-bdab-4a67-90ac-6b69d96e344e">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="periodo" type="string" uuid="9350c4b3-eab3-464a-9366-c0edf37869ce"/>
- <field name="data_inizio" type="date" uuid="36c9fce4-d27b-4b3a-a6b2-58dc0e4dd8a2"/>
- <field name="data_fine" type="date" uuid="d3ca8b85-9117-4b55-a455-66150bd31d3e"/>
- <field name="collegabile_segnalazioni" type="boolean" default="0" uuid="da43c1da-6158-40bc-bd15-62dddad492a7"/>
- <field name="quantita_residua" type="decimal" size="10" uuid="629ff801-824d-4ad7-bc7d-b72a2a3717cf">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="note" type="text" uuid="579649ed-46f6-4371-9692-58e724bf5ca1"/>
- <field name="attivo" type="boolean" default="1" uuid="d811fff4-3f7a-488b-9be1-c623c26f43f8"/>
- <field name="default_import_email" type="boolean" default="0" uuid="12c38b7e-21ca-4073-9dcd-bed9c1d1f171"/>
- <field name="created_at" type="timestamp" uuid="b89c48dd-a31b-4173-98c3-56f688449a23"/>
- <field name="updated_at" type="timestamp" uuid="8da87f11-9757-486e-beab-a0b2c1e5d0e9"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">contratto_servizio</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="user_id" to="id" uuid="cf09dd81-f27c-4eb3-a6b8-60c56ff9c629"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_template_id" to="id" uuid="f5ecdcde-183a-44d3-9a40-6f73b49289cc"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\Offerta" local-name="Offerta" namespace="\App\Models" uuid="f98de9f5-eb6f-467a-8f95-31b70d915946">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="c3304ea3-9e77-4559-992c-be946ba3e47f"/>
- <field name="user_id" type="bigInteger" unsigned="true" uuid="63813fc9-575d-4e6e-810d-b1047497c075"/>
- <field name="numero" type="integer" uuid="f023a417-2c0b-4fff-9c80-21d2425be5ce"/>
- <field name="titolo" type="string" uuid="5ba72745-a94a-4bf2-b90d-a61505e4a60a"/>
- <field name="stato" type="string" uuid="6fbf26fd-3f6a-423d-b93d-48010787778d"/>
- <field name="data" type="date" uuid="c1700acb-f03a-4d19-bcf4-aa54690109ec"/>
- <field name="data_validita" type="date" uuid="d5f192a6-8011-4b45-9e54-4b8e635facb5"/>
- <field name="totale" type="decimal" size="10" uuid="73cbf6f8-9a53-41f7-82f0-1e60cee174f3">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="note" type="text" uuid="74caf115-8e82-457f-b4ff-041634717a84"/>
- <field name="path_file" type="string" uuid="a9a104ed-13f8-4798-a6ca-8935b0341cf1"/>
- <field name="meta" type="json" uuid="515560f9-be1b-4a21-921e-98fd5ad103b0"/>
- <field name="created_at" type="timestamp" uuid="bf09aff4-7fd0-4d51-af42-6aec217b7822"/>
- <field name="updated_at" type="timestamp" uuid="42e19ba6-0c54-4ffb-9c8e-1026f077b6af"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">offerta</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="user_id" to="id" uuid="a54053de-2584-4984-8dbc-ba5a1137571c"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\OffertaRiga" local-name="OffertaRiga" namespace="\App\Models" uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="7fac024b-f96f-4012-9097-aea5a263d403"/>
- <field name="offerta_id" type="bigInteger" unsigned="true" uuid="ef151a19-0644-41c0-a0d3-e4c09ea3f25c"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="ff013f74-b127-47b5-91b4-0d0122ab7b40"/>
- <field name="descrizione" type="string" uuid="ed5cf628-97fd-47c8-bfd7-fbe70d9fbde1"/>
- <field name="quantita" type="decimal" size="10" uuid="a398d67d-eb98-4ed7-8ec2-7b3e6c97d889">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="unita_misura" type="string" uuid="bcfa8042-a56b-4c5e-b727-b95f17d683cf"/>
- <field name="prezzo_unitario" type="decimal" size="10" uuid="372c3640-3751-4f24-b56e-bbcc3bf47852">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="sconto" type="decimal" size="10" uuid="12147109-0d9f-4540-9507-b94a0c4a2975">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="ordine" type="integer" default="0" uuid="ec952846-0eff-4955-a147-4033fcfd651e"/>
- <field name="note_private" type="text" uuid="d7c52787-0c81-49f9-a3fb-57a94e0a92aa"/>
- <field name="tempo_stimato" type="decimal" size="10" uuid="563af2f8-093c-4e5b-baf5-0f2249311f62">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="created_at" type="timestamp" uuid="7dee4720-093d-49e4-aa16-2a9f192f273b"/>
- <field name="updated_at" type="timestamp" uuid="dd5d14dc-9b7a-43f6-bce2-8d7bbf3e4909"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">offerta_riga</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="offerta_id" to="id" uuid="68a5419f-adef-4d6e-9b28-873c2fbc3d50"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="prodotto_id" to="id" uuid="0e98c32c-512b-47c3-bc4f-b3ec66dff09f"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\OrdineLavoro" local-name="OrdineLavoro" namespace="\App\Models" uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="2edeaae9-ee24-486a-8915-68701af23fa3"/>
- <field name="user_id" type="bigInteger" unsigned="true" uuid="4b1a6baf-3a48-4170-83a5-361faef16291"/>
- <field name="numero" type="integer" uuid="f3a008ed-3125-4530-b9d4-0296c190226c"/>
- <field name="titolo" type="string" uuid="0c4cb8f3-62b6-40b3-b9b5-ee228663551a"/>
- <field name="stato" type="string" uuid="6e27b2cc-35d1-4694-a86a-1713e30100fe"/>
- <field name="percentuale_avanzamento" type="integer" size="5" default="0" uuid="3c3ba72a-22ea-40b8-8395-c2e8a878d908">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="data_apertura" type="date" uuid="19096a86-de29-4ab5-8689-d9edd6f93644"/>
- <field name="data_chiusura" type="date" uuid="ea74aee1-de7e-4feb-aeea-f59a2806f7c0"/>
- <field name="note" type="text" uuid="dbfdfb46-0d9e-4921-8ee4-b702cb3988f4"/>
- <field name="meta" type="json" uuid="bcce23aa-fa1e-4b27-8fb0-260ac25113ef"/>
- <field name="created_at" type="timestamp" uuid="310c81ea-88a2-489a-9223-21b77da5cd21"/>
- <field name="updated_at" type="timestamp" uuid="e690deea-d3d1-415c-a077-cfe5408341e6"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">ordine_lavoro</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="user_id" to="id" uuid="ea6d7186-c6ee-401b-97b4-3274e72831c5"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\OrdineLavoroHasOfferta" local-name="OrdineLavoroHasOfferta" namespace="\App\Models" uuid="98806966-1270-452c-b1ab-cdae6e0016b6">
- <field name="offerta_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="cba87bc3-ab11-4af2-bbb8-6830ad23c01a"/>
- <field name="ordine_lavoro_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="d2f51969-071a-43c1-b95f-680166e51783"/>
- </entity>
- <many-to-many mn-entity="\App\Models\OrdineLavoroHasOfferta" caption="OrdineLavoro to Offerta" uuid="2f367518-de50-431b-a35b-845be0f0d6a1">
- <many-to-many-entity name="\App\Models\Offerta" owning-side="true" alias="offerte" uuid="23689857-4279-44e9-9a77-f58deb0455e3">
- <many-to-many-field from="offerta_id" to="id" uuid="565f4711-1df5-45ad-949d-8c08cc7d81ec"/>
- </many-to-many-entity>
- <many-to-many-entity name="\App\Models\OrdineLavoro" owning-side="false" alias="ordiniLavoro" uuid="f557820c-6dac-427e-ac7c-ffa88be2cce4">
- <many-to-many-field from="ordine_lavoro_id" to="id" uuid="bf9afc7e-7bb7-43dd-a081-3eac94839d30"/>
- </many-to-many-entity>
- </many-to-many>
- <entity name="\App\Models\ContrattoTemplate" local-name="ContrattoTemplate" namespace="\App\Models" uuid="735de4a0-df7b-48d1-a686-8b7b88229151">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="a67ea0e6-cf8e-4afb-a469-be87c6fb17cf"/>
- <field name="codice" type="string" uuid="dc5fcea9-5c72-4086-a311-b72bfcfec4b1"/>
- <field name="nome" type="string" uuid="d8272d1d-d423-4e6f-815d-3fb649c3fc1e"/>
- <field name="descrizione" type="text" uuid="a553726d-4bbf-47b7-8061-aca7e126b5eb"/>
- <field name="periodo" type="string" uuid="46172701-6a39-4a9f-a334-f93507b0a960"/>
- <field name="attivo" type="boolean" default="1" uuid="930b1171-9a12-44df-abaa-54c95cd9a5a5"/>
- <field name="costo_base" type="decimal" size="10" uuid="b6196b2c-5609-4d95-8765-9a3fef75f1f3">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="meta" type="json" uuid="ad26f4dd-95bb-4278-a555-9672ee9bbb99"/>
- <field name="created_at" type="timestamp" uuid="8f53b06a-b7e5-4490-b02d-9a777ae9b33d"/>
- <field name="updated_at" type="timestamp" uuid="4a34b942-0d52-4c5b-9ab4-42cf1990284a"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">contratto_template</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\ContrattoTemplateTodo" local-name="ContrattoTemplateTodo" namespace="\App\Models" uuid="cdb29815-3972-4ad8-8d0a-f3265469539f">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="663ad965-eeea-4054-85e0-0ee4f376c809"/>
- <field name="contratto_template_id" type="bigInteger" unsigned="true" uuid="6648a1e1-dcaf-447e-be6b-91b1e3291dd7"/>
- <field name="titolo" type="string" uuid="f7a50105-eaa2-44f0-bbb3-8e85521f9993"/>
- <field name="descrizione" type="text" uuid="eb2c2957-2e28-44d2-a863-fae44f0c57ac"/>
- <field name="tipo_schedulazione" type="string" uuid="dbb7da2b-d5e3-4bd9-8914-42e837e14452"/>
- <field name="cron" type="string" uuid="bb7c1237-cf7d-4c74-9ada-7dfcd5556c4d"/>
- <field name="mese" type="integer" uuid="8565fdbc-6300-47d1-95c3-9f551b83e3f7"/>
- <field name="giorno" type="integer" uuid="d3840541-257a-480f-b435-f90387c73a6e"/>
- <field name="offset_giorni" type="integer" uuid="5542385e-4e90-4e00-a1df-67b922783054"/>
- <field name="priorita" type="string" uuid="6fea7b43-9ac5-46e6-abc2-cc536b3ad9a1"/>
- <field name="tipo_segnalazione" type="string" uuid="ce5542d0-0ec5-4060-b96b-ca3c4d24d622"/>
- <field name="ordine" type="integer" default="0" uuid="fc2f2ea2-f5c4-4869-8b7a-d5506a9decd7"/>
- <field name="attivo" type="boolean" default="1" uuid="1a0ad012-c968-4da2-81df-8c3cf2f028ab"/>
- <field name="meta" type="json" uuid="8cbf484b-40ba-4b06-b460-ee96af0abf77"/>
- <field name="created_at" type="timestamp" uuid="f74ad5f7-3cfc-4f36-8d04-d34e9450761e"/>
- <field name="updated_at" type="timestamp" uuid="0dd4eddd-2ba5-4ecd-a172-ed2aed451dde"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">contratto_template_todo</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="contratto_template_id" to="id" uuid="585c20ce-9da8-4fe2-9926-0681cd0c32f1"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\ContrattoServizioTodo" local-name="ContrattoServizioTodo" namespace="\App\Models" uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="95b74961-e2b4-4640-a235-4938034902c5"/>
- <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="f516123c-2034-4aca-9213-397460593262"/>
- <field name="contratto_template_todo_id" type="bigInteger" unsigned="true" uuid="0d340f14-2c61-4b71-b1ac-d01d0ff45adc"/>
- <field name="titolo" type="string" uuid="cc0106de-1acb-4da9-84f3-53c8941c0619"/>
- <field name="descrizione" type="text" uuid="020ff5ed-d5a6-43a2-a278-ac4a2b764959"/>
- <field name="tipo_schedulazione" type="string" uuid="f8841146-18f3-4906-9553-23f29e60ae3d"/>
- <field name="cron" type="string" uuid="83e3ed9d-ec16-42c3-8e29-adb77a03bb79"/>
- <field name="mese" type="integer" uuid="89138272-52f9-4889-a719-456357a0a27f"/>
- <field name="giorno" type="integer" uuid="e00540bf-6f4a-47ae-9820-da5a5f1d638f"/>
- <field name="offset_giorni" type="integer" uuid="7746bf3a-6d93-4109-ad6f-0147316b410a"/>
- <field name="data_prossima" type="date" uuid="396211be-d355-4cba-8b01-3fc9433b79a5"/>
- <field name="data_ultima" type="date" uuid="6e791de8-605c-47ad-9cee-a91fe1201068"/>
- <field name="priorita" type="string" uuid="1bb1e02d-a910-4d25-807f-c2c980d4e796"/>
- <field name="tipo_segnalazione" type="string" uuid="a21a2141-f099-452a-99ca-9c58d337b73f"/>
- <field name="ordine" type="integer" default="0" uuid="7a97d379-d5bd-4f9d-946c-6ae1c90ba703"/>
- <field name="attivo" type="boolean" default="1" uuid="186a4b94-28db-416d-85b6-c29eeeb39485"/>
- <field name="meta" type="json" uuid="a331b115-cc85-4785-961a-a2d38cab807c"/>
- <field name="created_at" type="timestamp" uuid="31e43e01-782b-4d66-a47a-3c582ac65491"/>
- <field name="updated_at" type="timestamp" uuid="c1aacd09-e455-4e64-b398-8bd590da01ad"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">contratto_servizio_todo</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="contratto_servizio_id" to="id" uuid="599210f0-f87a-4280-badd-0717a4fbcd40"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_template_todo_id" to="id" uuid="5b213914-00e8-4c89-9150-7022b294766a"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\ContrattoTemplateRiga" local-name="ContrattoTemplateRiga" namespace="\App\Models" uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="c594c8bc-e6be-4b44-b28a-8ddfe4893c97"/>
- <field name="contratto_template_id" type="bigInteger" unsigned="true" uuid="655f5603-7405-4da7-b945-492a74b82232"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="891eb65f-5e50-47a5-8d6a-48dd6f5a76ff"/>
- <field name="quantita" type="decimal" size="10" uuid="674f04ea-e6bd-4015-b80d-531ef3f4092d">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="unita_misura" type="string" uuid="8a770361-3ac1-4f27-a2b5-0f7375fea6c4"/>
- <field name="prezzo_unitario" type="decimal" size="10" uuid="a0418b73-b1f5-444c-b546-e7fe1216b4a9">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="periodo" type="string" uuid="cb3ffa97-9aa1-4e33-9de6-f2dc5b69347e"/>
- <field name="note" type="text" uuid="afecd4d2-26d4-4639-a390-be8b02023ba1"/>
- <field name="ordine" type="integer" default="0" uuid="509ec89f-2c7c-49b4-9083-0d1304760ef1"/>
- <field name="created_at" type="timestamp" uuid="0618fd13-368f-46d4-9c9f-cd649579384b"/>
- <field name="updated_at" type="timestamp" uuid="9d5c1e64-5a11-4dd5-bbda-7287d5c91307"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">contratto_template_riga</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="prodotto_id" to="id" uuid="ddbd2bf2-b433-47b1-9c3b-486b86f25032"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_template_id" to="id" uuid="868068aa-7b93-4c95-ae09-588db5fe51e2"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\ContrattoServizioRiga" local-name="ContrattoServizioRiga" namespace="\App\Models" uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="e39c970f-e64a-44c5-ad58-1701397cd924"/>
- <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="0a5b2558-c482-448c-bbd4-438a5ce8a905"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="1365f409-2ba4-46f1-8781-bff463c01a2c"/>
- <field name="quantita" type="decimal" size="10" uuid="1b2edca7-2ad1-47de-971e-5c1b82e7a49d">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="unita_misura" type="string" uuid="d92bbf06-a497-4525-afd5-a550a99f8ef3"/>
- <field name="prezzo_unitario" type="decimal" size="10" uuid="8db2eb16-6b67-402e-bd36-c9e662a0f5a7">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="sconto_tipo" type="string" uuid="dae66f10-abd5-4d06-a7df-7a1dc16d3eae"/>
- <field name="sconto_valore" type="decimal" size="10" uuid="d9652508-34dc-4ccf-a4d4-555f1bb614ca">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="periodo" type="string" uuid="ff878a32-4891-4622-8bd1-0c053da212ff"/>
- <field name="data_inizio" type="date" uuid="1001d7d0-b501-46c8-872e-ef7772ad9df9"/>
- <field name="data_fine" type="date" uuid="c5bc5aa0-3cee-4617-9ef7-aec55fe6396a"/>
- <field name="note" type="text" uuid="73662125-5f5e-4918-bade-f5428ab2def4"/>
- <field name="ordine" type="integer" default="0" uuid="953a6161-5754-4c09-8248-bd4f63383948"/>
- <field name="created_at" type="timestamp" uuid="d01c008b-3dd8-4f7d-87a5-5b74dc328f5c"/>
- <field name="updated_at" type="timestamp" uuid="23bc72d4-6532-4422-b813-f4689c8b34ad"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">contratto_servizio_riga</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="prodotto_id" to="id" uuid="e1b63a6d-9fc1-48b8-8a2a-54a34489ff3a"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_servizio_id" to="id" uuid="79825cde-3073-435d-9dec-fec172cbf19d"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\PromoCode" local-name="PromoCode" namespace="\App\Models" uuid="c0890191-d438-495f-819a-1a045d21a357">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="82e57f04-7b3a-4ec9-9cb1-8ab821e49024"/>
- <field name="codice" type="string" uuid="ee767607-dea9-4828-bf9f-780b10ab3127"/>
- <field name="sconto_percentuale" type="decimal" size="10" uuid="fe6bedd5-c44a-405d-af80-868f871e09fe">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="attivo" type="boolean" default="1" uuid="5ffde063-aea1-49de-a6b4-c8b710e11c5d"/>
- <field name="valido_dal" type="date" uuid="fba28412-e36c-4bb9-bbbc-a536cf12ae20"/>
- <field name="valido_al" type="date" uuid="6b62a9cc-8f2b-45cb-9396-b3a73e3201be"/>
- <field name="usi_max" type="integer" uuid="b6e44e7c-fe55-4914-9772-691b14832075"/>
- <field name="usi_count" type="integer" uuid="866015d2-09d0-4395-891c-a6c66cd27230"/>
- <field name="note" type="text" uuid="0945421e-d222-4ba8-aa95-762a58678b7e"/>
- <field name="created_at" type="timestamp" uuid="108d2bec-f727-41af-9a47-f1d29b0be843"/>
- <field name="updated_at" type="timestamp" uuid="b433b376-1050-49b0-9c1d-86f0b4aef896"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">promo_code</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\PromoCodeHasProdotto" local-name="PromoCodeHasProdotto" namespace="\App\Models" uuid="273deed0-9f6e-4aca-b64b-22a657db2a21">
- <field name="prodotto_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="2ded0962-e47f-4bee-94d0-364923a9aace"/>
- <field name="promo_code_id" type="bigInteger" required="true" primary="true" unsigned="true" uuid="cbfc3db8-20fd-4fce-8dff-402604dd3d20"/>
- </entity>
- <many-to-many mn-entity="\App\Models\PromoCodeHasProdotto" caption="PromoCode to Prodotto" uuid="b628247f-6792-430c-970b-aa651c7f7870">
- <many-to-many-entity name="\App\Models\Prodotto" owning-side="true" alias="prodotti" uuid="b51dbffa-75cf-4b1a-92eb-83a8ac62d775">
- <many-to-many-field from="prodotto_id" to="id" uuid="727ea3ce-db87-4aba-8a83-db60bda0e7e4"/>
- </many-to-many-entity>
- <many-to-many-entity name="\App\Models\PromoCode" owning-side="false" alias="promoCodes" uuid="90017630-36c3-4e45-b433-7eec25a364e8">
- <many-to-many-field from="promo_code_id" to="id" uuid="3155e17d-c9ee-4911-a98d-ca14e7351d0b"/>
- </many-to-many-entity>
- </many-to-many>
- <entity name="\App\Models\AcquistoServizio" local-name="AcquistoServizio" namespace="\App\Models" uuid="c9dad18d-0272-4878-8404-fd0db896b447">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="f948a486-f887-46c0-96be-87ce5f4c6945"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="bc680727-da9a-43e4-8291-067fcdb491db"/>
- <field name="promo_code_id" type="bigInteger" unsigned="true" uuid="c4101336-5ef2-4fe8-a222-ba16450e4317"/>
- <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="43d5b052-1494-4bd6-97ac-391c515d37f5"/>
- <field name="nome" type="string" uuid="27d91a86-9d2f-4311-a923-bd97abde2241"/>
- <field name="email" type="string" uuid="4ad66228-0077-4bed-a371-b6784f4e28eb"/>
- <field name="telefono" type="string" uuid="0cbd8803-1513-4000-ac24-428a9b217ea9"/>
- <field name="modalita" type="string" uuid="adcbaf5e-7e09-422b-a6ce-4016c7bab0de"/>
- <field name="prezzo_servizio" type="decimal" size="10" uuid="6d3fd49c-d838-47c5-b212-381b9a2a920e">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="costo_domicilio" type="decimal" size="10" uuid="b993cd59-1578-4198-bca0-d48c3fa882a1">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="sconto" type="decimal" size="10" uuid="6874d156-0200-4215-80c3-2d6a7719eda3">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="totale" type="decimal" size="10" uuid="88cf3d8e-2f2c-4c58-9c13-da2d462b4d16">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="provider" type="string" uuid="e66150ce-7775-4426-959a-00e799f75568"/>
- <field name="payment_status" type="string" uuid="463c8589-2ec6-433c-b78e-f173cf9787b7"/>
- <field name="condizioni_accettate_at" type="dateTime" uuid="4a75c4b5-5391-4088-a88d-14beadfb0914"/>
- <field name="token" type="string" uuid="3c187398-c6bd-42b8-a22c-0674e1579405"/>
- <field name="meta" type="json" uuid="9b9bd179-d249-4d73-a35d-1811619012df"/>
- <field name="codice_fiscale" type="string" uuid="ce0d688a-8a3b-4b93-a5b1-34c449881314"/>
- <field name="indirizzo" type="string" uuid="43f589c6-38d2-4b3d-a009-daf87264a3f9"/>
- <field name="note_cliente" type="text" uuid="88543171-e695-4be3-acfe-8955f90ef825"/>
- <field name="note_operatore" type="string" uuid="d992c256-dd60-40f7-8032-01c55e6b759b"/>
- <field name="created_at" type="timestamp" uuid="af995e1a-0223-486e-98d0-85d429fa3d9b"/>
- <field name="updated_at" type="timestamp" uuid="fd6b9919-0139-45f2-b4e2-f3cc84321316"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">acquisto_servizio</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="prodotto_id" to="id" uuid="cbfb0c26-6096-4ff5-95ec-766af130bf9c"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="promo_code_id" to="id" uuid="35849a96-4291-4068-a130-a6570917a0cc"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="segnalazione_id" to="id" uuid="54f240d3-c752-4594-9da1-2f1f569d36c8"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\ProdottoTodo" local-name="ProdottoTodo" namespace="\App\Models" uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="87bde1ea-7640-400e-a7d1-0462489ae11d"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="25811152-45de-471d-8564-cc81ef9786e8"/>
- <field name="titolo" type="string" uuid="a603f5de-b1a1-4f62-bb8c-f4f1cd7c3f50"/>
- <field name="descrizione" type="text" uuid="985444a2-483b-4a8c-a899-1479af35314b"/>
- <field name="ordine" type="integer" default="0" uuid="95190e25-ec45-4882-b288-e38a0db8ed74"/>
- <field name="attivo" type="boolean" default="1" uuid="d64d14fd-6ac7-40bc-9f92-3139b413f803"/>
- <field name="obbligatorio" type="boolean" default="0" uuid="07db0aa3-81fe-4d89-a496-04842f0d087b"/>
- <field name="meta" type="json" uuid="af4eba12-2a21-4023-bd8e-da0d4b46e265"/>
- <field name="public" type="boolean" default="1" uuid="f6354bf0-0cf6-43e5-9df8-bcf6c63ed4bd"/>
- <field name="created_at" type="timestamp" uuid="c0946141-13ab-487a-b958-6faee53e5b08"/>
- <field name="updated_at" type="timestamp" uuid="27d28691-d311-4d90-9e47-6a56544091dc"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">prodotto_todo</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="prodotto_id" to="id" uuid="8739cbb8-97d0-4b24-bdf2-7218bba13cf2"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\SegnalazioneTodo" local-name="SegnalazioneTodo" namespace="\App\Models" uuid="05f7d8b0-095f-456c-96ec-3980b0435855">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="1df0218e-6128-4831-9b3b-2eac58ffa182"/>
- <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="d14a0c59-6b66-4328-bd55-de2d7a0a27a6"/>
- <field name="prodotto_todo_id" type="bigInteger" unsigned="true" uuid="a48df42a-6791-41b7-92a8-0b02e7f25ca5"/>
- <field name="completato_da_id" type="bigInteger" unsigned="true" uuid="fdee23c2-9175-4495-99b4-631761149856"/>
- <field name="titolo" type="string" uuid="cb9d1238-a216-4d6d-b75b-890b532e6073"/>
- <field name="descrizione" type="text" uuid="192661a9-3d18-4eda-840c-e03991eeb59f"/>
- <field name="ordine" type="integer" default="0" uuid="50402be7-5614-49a1-9da9-ab614274f510"/>
- <field name="obbligatorio" type="boolean" default="0" uuid="4cafcf9d-7b00-4834-aa70-cdec0fd04dea"/>
- <field name="completato_at" type="dateTime" uuid="49c1f168-39e6-4c8a-974f-e8897ce76e15"/>
- <field name="meta" type="json" uuid="2c3de855-3f52-411b-8490-0c4367d21605"/>
- <field name="public" type="boolean" default="1" uuid="67bb376a-567c-486e-a285-d1a52b515c00"/>
- <field name="created_at" type="timestamp" uuid="eeb4f415-6d04-4886-8c4a-b24732fd87ba"/>
- <field name="updated_at" type="timestamp" uuid="b8abd05e-4682-4f4e-ad50-cc3980955c82"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">segnalazione_todo</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="segnalazione_id" to="id" uuid="7c11bde8-f541-4a43-aa6b-a8583a591dbe"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="prodotto_todo_id" to="id" uuid="86840487-55f9-4adc-b5fe-98379305f899"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="completato_da_id" to="id" uuid="1422f882-923a-4fb9-ba53-b782043d1aad"/>
- </association>
- <entity name="\App\Models\CasellaImap" local-name="CasellaImap" namespace="\App\Models" uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="448cba2f-fa91-47fd-af2a-5493103bdb9b"/>
- <field name="nome" type="string" uuid="ef188830-4927-4885-a15a-649d7856e40d"/>
- <field name="host" type="string" uuid="dacc8a03-04c5-46e0-a21c-f26bfe95f619"/>
- <field name="porta" type="smallInteger" default="993" unsigned="true" uuid="2e2a46f5-974a-4f5a-96f7-22d45b5a0577"/>
- <field name="encryption" type="string" default="ssl" uuid="a2086dd6-3672-4254-abfb-4b97c90ec015"/>
- <field name="valida_certificato" type="boolean" default="1" uuid="7a9dbe8a-de13-41b1-8ffa-09a1fd9e2a87"/>
- <field name="username" type="string" uuid="8882e90a-533c-497b-baeb-bf86a45d4110"/>
- <field name="password" type="string" uuid="42a2f565-6d2c-423c-a2f5-9854f208e63e"/>
- <field name="protocollo" type="string" default="imap" uuid="2f407c8d-76dc-402f-9ad2-942f76e77ad5"/>
- <field name="cartella" type="string" default="INBOX" uuid="52c3622c-e39a-4a55-89f7-04fee69d5003"/>
- <field name="cartella_processate" type="string" uuid="aef91ef0-5429-4ed2-af72-88827e34850d"/>
- <field name="solo_non_lette" type="boolean" default="1" uuid="2237f4e2-1eca-4824-a4ee-eb3ec465f002"/>
- <field name="marca_come_letta" type="boolean" default="1" uuid="988c2976-20eb-4f1a-b066-70c4cfa2c4ec"/>
- <field name="sposta_processate" type="boolean" default="1" uuid="7ff6b7a2-766d-4651-974c-0b30815fd5fb"/>
- <field name="attivo" type="boolean" default="1" uuid="ffa286c1-d955-4f88-9303-45d7bcaf21ae"/>
- <field name="ultimo_controllo_at" type="timestamp" uuid="0b4175e0-b5db-4a00-8e90-87866ec21aaf"/>
- <field name="ultimo_errore" type="text" uuid="be268580-0630-471f-a36c-33b5fc6c7504"/>
- <field name="created_at" type="timestamp" uuid="04d91505-3ffd-4814-957d-373115a63411"/>
- <field name="updated_at" type="timestamp" uuid="a926e66a-b866-4393-95d9-685fc390e55d"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">casella_imap</attribute>
- </orm-attributes>
- </entity>
- <entity name="\App\Models\Fattura" local-name="Fattura" namespace="\App\Models" uuid="68922686-8dc2-403e-a281-a0efcdf39a82">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="8d96db71-3d83-442b-8fde-d4ef73b998d1"/>
- <field name="user_id" type="bigInteger" unsigned="true" uuid="af9e2aba-ed74-4675-b2a6-b8e5849d4636"/>
- <field name="created_by_id" type="bigInteger" unsigned="true" uuid="c5f80f70-abda-43ea-bd96-4342fc0c1135"/>
- <field name="numero" type="integer" uuid="814b84d9-8b89-40a5-9e01-cc834ea50b6e"/>
- <field name="stato" type="string" uuid="9c2b755c-2f48-40fc-a96d-db71a3ae8b09"/>
- <field name="data" type="date" uuid="c4f78038-4cfb-4dd1-bcac-b9d383a4d59b"/>
- <field name="data_scadenza" type="date" uuid="6e93d6fb-f64c-41da-84bb-a80a5c2e3746"/>
- <field name="periodo_da" type="date" uuid="306e5089-edea-4e61-92ff-9e0775233e9d"/>
- <field name="periodo_a" type="date" uuid="56dc7aa8-f831-4d0f-8fef-5164a0913193"/>
- <field name="imponibile" type="decimal" size="10" uuid="920496ba-c681-43bf-bd2e-8bc0790e7ef3">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="iva_percentuale" type="decimal" size="10" uuid="5859d5c0-be4b-482d-9f58-21ec4db541c2">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="iva" type="decimal" size="10" uuid="d356d45a-2226-4425-a50b-9b1e4eedfa6e">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="totale" type="decimal" size="10" uuid="9903207b-f0cd-444d-adbf-3611f1ebf4d8">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="note" type="text" uuid="763c3bf5-05b8-438a-94c7-0c4384affaba"/>
- <field name="path_file" type="string" uuid="075bf658-058d-424f-b48e-b1e28b1e049e"/>
- <field name="ragione_sociale" type="string" uuid="576e02ce-8672-492c-b6ec-01308fea5622"/>
- <field name="piva" type="string" uuid="b7cff289-6dd6-456e-85c2-42ca63b1e1e9"/>
- <field name="cod_fiscale" type="string" uuid="48f48aab-d7ef-414d-83a0-7ab98f913223"/>
- <field name="indirizzo" type="string" uuid="02f2de90-e5ee-4b4a-80a0-8d3cf2dd72a4"/>
- <field name="email" type="string" uuid="bde98b8c-6c2d-4841-9df7-887e4b220f88"/>
- <field name="telefono" type="string" uuid="3a91a095-aeb7-4b60-9933-f8614d0e3162"/>
- <field name="meta" type="json" uuid="48bd7251-8781-4882-8e2a-5f40f28052c6"/>
- <field name="comune_id" type="bigInteger" unsigned="true" uuid="a976501c-a52b-4bc6-ba45-f22d7f7ec967"/>
- <field name="created_at" type="timestamp" uuid="ee6845fc-c117-4f0a-851e-106fea406367"/>
- <field name="updated_at" type="timestamp" uuid="4fa40b85-f8b0-4306-a10e-6da0d8bfeabb"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">fattura</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="user_id" to="id" uuid="18643b0d-6874-4337-bf61-c6b57630a5da"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="created_by_id" to="id" uuid="2660ac06-894c-4de9-a053-c47f76f5894f"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="comune_id" to="id" uuid="d954bd57-b5dc-440b-b623-27eda0482e2a"/>
- </association>
- <entity name="\App\Models\FatturaRiga" local-name="FatturaRiga" namespace="\App\Models" uuid="6cc482e6-604b-4e73-9870-36f4f2711362">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="c9bbfc3a-fa00-44c2-b098-5904d0b7b3e6"/>
- <field name="fattura_id" type="bigInteger" unsigned="true" uuid="b4de60f9-13ec-4965-b461-190be76f143a"/>
- <field name="tipo" type="string" uuid="6257b217-17d6-41a3-9487-5c518c2bc02b"/>
- <field name="descrizione" type="string" uuid="a148a569-2e9c-4101-b80e-7b4256298e21"/>
- <field name="quantita" type="decimal" size="10" uuid="1ccc9c16-7d83-49d4-bfd1-c6b4a1161716">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="unita_misura" type="string" uuid="92db035d-b7a0-4b42-8172-f47554b2610d"/>
- <field name="prezzo_unitario" type="decimal" size="10" uuid="69557940-3860-4a2b-8a9b-2462aaab29db">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="sconto" type="decimal" size="10" uuid="91a15e9b-c71e-4931-b219-009b9310a80d">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="iva_percentuale" type="decimal" size="10" uuid="7034c918-097a-4d1e-857c-db466fed11a3">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="importo" type="decimal" size="10" uuid="cccc275f-4a6d-4654-a8c9-8b8c6e59b0ad">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="minuti" type="integer" uuid="270b0887-2c09-454f-a235-e27485cb31fe"/>
- <field name="ordine" type="integer" default="0" uuid="30fe1f83-a681-492c-833a-a5112fb39d67"/>
- <field name="nota" type="text" uuid="e5d8dcae-ee6d-4ca2-9e6f-6058a137b136"/>
- <field name="annotazione_id" type="bigInteger" unsigned="true" uuid="3ea317af-cada-4c7d-a139-d13e70456379"/>
- <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="a3c26231-fc66-4f25-94c9-713e5f5eb354"/>
- <field name="contratto_servizio_id" type="bigInteger" unsigned="true" uuid="e398b764-2f39-4b67-ad33-540d847a4d34"/>
- <field name="contratto_servizio_riga_id" type="bigInteger" unsigned="true" uuid="8f752ece-34ad-4e94-b983-fb7a1d56312f"/>
- <field name="ordine_lavoro_id" type="bigInteger" unsigned="true" uuid="754d9613-e7f6-45c4-bf5e-14bcdc0d9157"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="75f07f2c-fe97-4189-a554-789e860950f7"/>
- <field name="periodo_da" type="date" uuid="5c8db971-3b05-45f3-aa33-ef251e579c60"/>
- <field name="periodo_a" type="date" uuid="2b994a3f-71f2-4647-aad6-5743aea49845"/>
- <field name="created_at" type="timestamp" uuid="d2d85cb5-2cdc-454f-ade7-aa8e38744b37"/>
- <field name="updated_at" type="timestamp" uuid="d591d678-dfea-4105-9e84-6a6786f31125"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">fattura_riga</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="fattura_id" to="id" uuid="2099a305-fbd4-4076-a85c-d0d3c96d0a5e"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="annotazione_id" to="id" uuid="2f341028-7afe-4bc0-b028-34052ac55978"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="segnalazione_id" to="id" uuid="fb426b82-ed78-4ad1-89ba-a48a66e19ec2"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_servizio_id" to="id" uuid="9809bfc1-664d-487e-a8b7-54419a018ab7"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="contratto_servizio_riga_id" to="id" uuid="4d151ce4-d485-4b6e-b558-e6779a406b22"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="ordine_lavoro_id" to="id" uuid="80800d7e-bdd2-4c2a-b4d7-b6d92a5ca8bf"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="prodotto_id" to="id" uuid="1161edb2-e88f-4df3-a370-160def07904b"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\SegnalazioneSlot" local-name="SegnalazioneSlot" namespace="\App\Models" uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="72d22456-ccc5-4806-9743-b91635948ea7"/>
- <field name="segnalazione_id" type="bigInteger" unsigned="true" uuid="e1a2b3f2-59be-4c31-ba82-d1e413cf5cc9"/>
- <field name="starts_at" type="dateTime" uuid="25084066-cd50-4459-8b21-dacdb3a988aa"/>
- <field name="ends_at" type="dateTime" uuid="310f5a51-80c7-444c-a53d-2b8c9ac5401d"/>
- <field name="created_at" type="timestamp" uuid="db734a85-a27a-4254-ae8c-63d472df57a7"/>
- <field name="updated_at" type="timestamp" uuid="f3fe4780-00f5-4a30-86a3-ff7fd643d629"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">segnalazione_slot</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="segnalazione_id" to="id" uuid="c75ea229-0d18-4d5e-8c5a-cb7cc0c8dff6"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <entity name="\App\Models\OrdineLavoroRiga" local-name="OrdineLavoroRiga" namespace="\App\Models" uuid="04287ee6-13fe-4b73-970a-aedefd569698">
- <field name="id" type="bigInteger" required="true" unique="true" primary="true" unsigned="true" auto-increment="true" uuid="7ed8a1d0-2b4d-418b-b371-60d8ab5c6361"/>
- <field name="ordine_lavoro_id" type="bigInteger" unsigned="true" uuid="bd447a10-6098-49fa-b342-38bfc6c0271d"/>
- <field name="prodotto_id" type="bigInteger" unsigned="true" uuid="05297563-07a0-4cbb-876d-cf811973af8b"/>
- <field name="descrizione" type="string" uuid="dddc3ab2-3d27-4954-abb0-7add4bd39045"/>
- <field name="quantita" type="decimal" size="10" uuid="6df25b5a-0b5b-4b75-9f1f-de5b1b33fc81">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="unita_misura" type="string" uuid="4d89aa02-bd75-470c-95b2-6ed1086fecbb"/>
- <field name="prezzo_unitario" type="decimal" size="10" uuid="9d4792f1-0b30-48f8-ac62-4be597728e15">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="sconto" type="decimal" size="10" uuid="b1bec05e-c03e-4cd5-abb2-56a077292f3a">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="ordine" type="integer" default="0" uuid="1411b9dc-1fce-4a6d-a961-0e631ebf42da"/>
- <field name="note_private" type="text" uuid="2c203621-a3dc-4adf-97e9-387293ec5d2f"/>
- <field name="tempo_stimato" type="decimal" size="10" uuid="6cc655ed-c6b9-45a6-b078-1dbae13e93c6">
- <orm-attributes>
- <attribute name="decimal">2</attribute>
- </orm-attributes>
- </field>
- <field name="created_at" type="timestamp" uuid="15b7da2d-8558-47b6-bbf2-88556147d03d"/>
- <field name="updated_at" type="timestamp" uuid="fea3f591-b802-401b-b494-0648197ec020"/>
- <orm-attributes>
- <attribute name="fillableAll">as-fillable-all</attribute>
- <attribute name="table">ordine_lavoro_riga</attribute>
- </orm-attributes>
- </entity>
- <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">
- <association-field from="ordine_lavoro_id" to="id" uuid="bf0d5c13-4e24-4438-8e1f-dcc24809cbc6"/>
- <orm-attributes>
- <attribute name="onDelete">cascade</attribute>
- </orm-attributes>
- </association>
- <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">
- <association-field from="prodotto_id" to="id" uuid="6b67c71b-1af2-4f55-9a45-b7bdfe642ad9"/>
- <orm-attributes>
- <attribute name="onDelete">set null</attribute>
- </orm-attributes>
- </association>
- <migrations version="1.0">
- <revision uuid="140bda96-ff98-4f0d-894d-165e556494e9" date="2026-08-09 01:24:26.374386" exportable="true">
- <element action="add" uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="module">
- <property name="export-format" value="Laravel"/>
- <property name="export-path" value="."/>
- <property name="local-name" value="Application module"/>
- <property name="local-namespace" value="App\Models"/>
- <property name="name" value="\Application module"/>
- <property name="namespace" value="\App\Models"/>
- </element>
- <element action="add" uuid="56185713-1439-4bd9-81df-6d5339d066ce" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="extends" value="\Illuminate\Foundation\Auth\User"/>
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="User"/>
- <property name="name" value="\App\Models\User"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="users"/>
- </element>
- <element action="add" uuid="b21d156e-828b-49fe-87a8-659eb8411896" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Segnalazione"/>
- <property name="name" value="\App\Models\Segnalazione"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="segnalazione"/>
- </element>
- <element action="add" uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ConfiguraSegnalazione"/>
- <property name="name" value="\App\Models\ConfiguraSegnalazione"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="configura_segnalazione"/>
- </element>
- <element action="add" uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Annotazione"/>
- <property name="name" value="\App\Models\Annotazione"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="annotazione"/>
- </element>
- <element action="add" uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="AllegatoAnnotazione"/>
- <property name="name" value="\App\Models\AllegatoAnnotazione"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="allegato_annotazione"/>
- </element>
- <element action="add" uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Provincia"/>
- <property name="name" value="\App\Models\Provincia"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="provincia"/>
- </element>
- <element action="add" uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Nazione"/>
- <property name="name" value="\App\Models\Nazione"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="nazione"/>
- </element>
- <element action="add" uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Comune"/>
- <property name="name" value="\App\Models\Comune"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="comune"/>
- </element>
- <element action="add" uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Config"/>
- <property name="name" value="\App\Models\Config"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="config"/>
- </element>
- <element action="add" uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ConfigNotifiche"/>
- <property name="name" value="\App\Models\ConfigNotifiche"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="config_notifiche"/>
- </element>
- <element action="add" uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Prodotto"/>
- <property name="name" value="\App\Models\Prodotto"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="prodotto"/>
- </element>
- <element action="add" uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ContrattoServizio"/>
- <property name="name" value="\App\Models\ContrattoServizio"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="contratto_servizio"/>
- </element>
- <element action="add" uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Offerta"/>
- <property name="name" value="\App\Models\Offerta"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="offerta"/>
- </element>
- <element action="add" uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="OffertaRiga"/>
- <property name="name" value="\App\Models\OffertaRiga"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="offerta_riga"/>
- </element>
- <element action="add" uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="OrdineLavoro"/>
- <property name="name" value="\App\Models\OrdineLavoro"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="ordine_lavoro"/>
- </element>
- <element action="add" uuid="98806966-1270-452c-b1ab-cdae6e0016b6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="local-name" value="OrdineLavoroHasOfferta"/>
- <property name="name" value="\App\Models\OrdineLavoroHasOfferta"/>
- <property name="namespace" value="\App\Models"/>
- </element>
- <element action="add" uuid="735de4a0-df7b-48d1-a686-8b7b88229151" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ContrattoTemplate"/>
- <property name="name" value="\App\Models\ContrattoTemplate"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="contratto_template"/>
- </element>
- <element action="add" uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ContrattoTemplateTodo"/>
- <property name="name" value="\App\Models\ContrattoTemplateTodo"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="contratto_template_todo"/>
- </element>
- <element action="add" uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ContrattoServizioTodo"/>
- <property name="name" value="\App\Models\ContrattoServizioTodo"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="contratto_servizio_todo"/>
- </element>
- <element action="add" uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ContrattoTemplateRiga"/>
- <property name="name" value="\App\Models\ContrattoTemplateRiga"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="contratto_template_riga"/>
- </element>
- <element action="add" uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ContrattoServizioRiga"/>
- <property name="name" value="\App\Models\ContrattoServizioRiga"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="contratto_servizio_riga"/>
- </element>
- <element action="add" uuid="c0890191-d438-495f-819a-1a045d21a357" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="PromoCode"/>
- <property name="name" value="\App\Models\PromoCode"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="promo_code"/>
- </element>
- <element action="add" uuid="273deed0-9f6e-4aca-b64b-22a657db2a21" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="local-name" value="PromoCodeHasProdotto"/>
- <property name="name" value="\App\Models\PromoCodeHasProdotto"/>
- <property name="namespace" value="\App\Models"/>
- </element>
- <element action="add" uuid="c9dad18d-0272-4878-8404-fd0db896b447" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="AcquistoServizio"/>
- <property name="name" value="\App\Models\AcquistoServizio"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="acquisto_servizio"/>
- </element>
- <element action="add" uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="ProdottoTodo"/>
- <property name="name" value="\App\Models\ProdottoTodo"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="prodotto_todo"/>
- </element>
- <element action="add" uuid="05f7d8b0-095f-456c-96ec-3980b0435855" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="SegnalazioneTodo"/>
- <property name="name" value="\App\Models\SegnalazioneTodo"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="segnalazione_todo"/>
- </element>
- <element action="add" uuid="0a6f5cb1-6847-45b2-9241-8ab815e1c380" parent-uuid="56185713-1439-4bd9-81df-6d5339d066ce" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="cognome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="email"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="telefono"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="password"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="azienda_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="email_verified_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="remember_token"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="api_token"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="two_factor_secret"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="two_factor_recovery_codes"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="two_factor_confirmed_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="is_gruppo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="is_azienda"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="label_gruppo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="componenti_gruppo"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="ragione_sociale"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="piva"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="cod_fiscale"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="indirizzo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="comune_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="d15505d1-a284-4cf1-94b0-70d0f5788243" parent-uuid="b21d156e-828b-49fe-87a8-659eb8411896" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="description" value="chi ha fatto la segnalazione"/>
- <property name="name" value="user_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="description" value="a chi è assegnata la segnalazione"/>
- <property name="name" value="assegnata_a_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="azienda_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_servizio_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_servizio_todo_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="ordine_lavoro_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="acquisto_servizio_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="numero"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="titolo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="stato"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="priorita"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="tipo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="token"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="origine"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="tempo_stimato"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="b82082e0-0b90-471d-9698-545b58e84b5a" parent-uuid="8819ca52-ae65-43e3-8aa4-a9d99d228284" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="label"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="gruppo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="key"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="value"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="type"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="order"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="icona"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="colore"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="opzioni"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="0437cbe3-b2c4-4fa6-8c9c-7df74e17a5e2" parent-uuid="43c9733c-5074-4c8d-9cb1-33867510c2fc" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="segnalazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="user_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="text"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="tempo_minuti"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="cast" value="datetime"/>
- <property name="castFormat" value="d/m/Y H:i"/>
- <property name="name" value="tempo_data"/>
- <property name="type" value="dateTime"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="costo"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="costo_descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="riservata"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="riferimento"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="email"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="telefono"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="30f3fa1d-7834-42da-bbfc-3a60ddad4034" parent-uuid="be8b5d1d-91da-4d7b-a50e-415ef90e5669" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="annotazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="path_file"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="e489d50b-7a4e-4869-b62a-6e552e4a1140" parent-uuid="f1331b94-8ccf-4328-bc32-bffdc732572e" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="sigla"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="67af633f-42c4-416d-ab1f-6b1c8a36dd82" parent-uuid="6128d2f6-88d0-472b-bc71-0a9f49370847" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="sigla"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="656af606-c65b-4b92-bac2-4e8a23d286e4" parent-uuid="2ef4e619-ebea-457a-8613-05b3dfb6c7fa" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="provincia_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="codice_catastale"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="badce0d4-64dd-43b2-be60-820ff13951fa" parent-uuid="dd24c9ce-a45f-4d90-b374-ede2efe2e25b" type="field">
- <property name="name" value="key"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="string"/>
- <property name="unique" value="true"/>
- </element>
- <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">
- <property name="name" value="group"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="display_name"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="value"/>
- <property name="type" value="longText"/>
- </element>
- <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">
- <property name="name" value="order"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="type"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="ace37544-4c55-4ca9-8144-2da585fae3d6" parent-uuid="23c0457c-f9c0-4210-9b12-1c8fa92cd788" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="event"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="users"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="is_attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="cd5804ad-d5cc-4203-b38a-e5cfa3ebacac" parent-uuid="ec22a629-0e0a-4949-9ca3-43c6afee8ed5" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="codice"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="tipo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="unita_misura"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="prezzo"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="periodo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="prenotabile_online"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="2fc7e24f-923a-49ea-acb2-82d9a15535a2" parent-uuid="58092d28-4a8e-4122-8204-5e009fc16ce6" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="user_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_template_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="costo"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="periodo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="data_inizio"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="data_fine"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="collegabile_segnalazioni"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="quantita_residua"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="c3304ea3-9e77-4559-992c-be946ba3e47f" parent-uuid="f98de9f5-eb6f-467a-8f95-31b70d915946" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="user_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="numero"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="titolo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="stato"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="data"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="data_validita"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="totale"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="path_file"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="7fac024b-f96f-4012-9097-aea5a263d403" parent-uuid="77be2d5b-7aa8-4a5f-86da-102064c025e6" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="offerta_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="quantita"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="unita_misura"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="prezzo_unitario"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="sconto"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="note_private"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="tempo_stimato"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="2edeaae9-ee24-486a-8915-68701af23fa3" parent-uuid="97b95f3d-1074-4c5d-a526-c829f6bda8f0" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="user_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="numero"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="titolo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="stato"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="default" value="0"/>
- <property name="name" value="percentuale_avanzamento"/>
- <property name="size" value="5"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="data_apertura"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="data_chiusura"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="cba87bc3-ab11-4af2-bbb8-6830ad23c01a" parent-uuid="98806966-1270-452c-b1ab-cdae6e0016b6" type="field">
- <property name="name" value="offerta_id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="ordine_lavoro_id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <element action="add" uuid="a67ea0e6-cf8e-4afb-a469-be87c6fb17cf" parent-uuid="735de4a0-df7b-48d1-a686-8b7b88229151" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="codice"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="periodo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="costo_base"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="663ad965-eeea-4054-85e0-0ee4f376c809" parent-uuid="cdb29815-3972-4ad8-8d0a-f3265469539f" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_template_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="titolo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="tipo_schedulazione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="cron"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="mese"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="giorno"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="offset_giorni"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="priorita"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="tipo_segnalazione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="95b74961-e2b4-4640-a235-4938034902c5" parent-uuid="394c3968-e086-46ca-a3ac-0c99d75eddc6" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_servizio_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_template_todo_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="titolo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="tipo_schedulazione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="cron"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="mese"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="giorno"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="offset_giorni"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="data_prossima"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="data_ultima"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="priorita"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="tipo_segnalazione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="c594c8bc-e6be-4b44-b28a-8ddfe4893c97" parent-uuid="5c90d7b2-3bfb-4531-906b-ffb50049910d" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_template_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="quantita"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="unita_misura"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="prezzo_unitario"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="periodo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="e39c970f-e64a-44c5-ad58-1701397cd924" parent-uuid="acba2571-6f1b-46a8-85b8-001d04f4aaca" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_servizio_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="quantita"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="unita_misura"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="prezzo_unitario"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="periodo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="82e57f04-7b3a-4ec9-9cb1-8ab821e49024" parent-uuid="c0890191-d438-495f-819a-1a045d21a357" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="codice"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="sconto_percentuale"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="valido_dal"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="valido_al"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="usi_max"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="usi_count"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="2ded0962-e47f-4bee-94d0-364923a9aace" parent-uuid="273deed0-9f6e-4aca-b64b-22a657db2a21" type="field">
- <property name="name" value="prodotto_id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="promo_code_id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <element action="add" uuid="f948a486-f887-46c0-96be-87ce5f4c6945" parent-uuid="c9dad18d-0272-4878-8404-fd0db896b447" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="promo_code_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="segnalazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="email"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="telefono"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="modalita"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="prezzo_servizio"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="costo_domicilio"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="sconto"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="totale"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="provider"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="payment_status"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="condizioni_accettate_at"/>
- <property name="type" value="dateTime"/>
- </element>
- <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">
- <property name="name" value="token"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="codice_fiscale"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="indirizzo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="note_cliente"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="note_operatore"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="87bde1ea-7640-400e-a7d1-0462489ae11d" parent-uuid="c493452e-6e93-4e0e-a1b2-0791f82188b1" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="titolo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="obbligatorio"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="public"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="1df0218e-6128-4831-9b3b-2eac58ffa182" parent-uuid="05f7d8b0-095f-456c-96ec-3980b0435855" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="segnalazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_todo_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="completato_da_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="titolo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="obbligatorio"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="completato_at"/>
- <property name="type" value="dateTime"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="public"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="8399970c-2d0b-403e-996b-e86248cb3bc5" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\User"/>
- <property name="inverse-alias" value="comune"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="users"/>
- <property name="to" value="\App\Models\Comune"/>
- </element>
- <element action="add" uuid="787d90ec-5676-4749-9b36-cea959c6793b" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\User"/>
- <property name="inverse-alias" value="azienda"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="utentiAzienda"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="2fa65d03-8ddb-413f-8064-798860928786" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="assegnataA"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioniAssegnate"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="6faa9818-b5b6-4eab-96b6-6eaf56d1de79" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="user"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioni"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="d586b98c-7daa-49d4-ada1-8c2c9223fb66" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="azienda"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioniAzienda"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="5f4ca39e-40ba-4157-bf4c-603b7469b044" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="contrattoServizio"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioni"/>
- <property name="to" value="\App\Models\ContrattoServizio"/>
- </element>
- <element action="add" uuid="86aded2a-2e4e-4fc2-8702-5191cd073056" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="ordineLavoro"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioni"/>
- <property name="to" value="\App\Models\OrdineLavoro"/>
- </element>
- <element action="add" uuid="faaed052-f628-4ae7-8f52-b3614fad893e" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="contrattoServizioTodo"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioni"/>
- <property name="to" value="\App\Models\ContrattoServizioTodo"/>
- </element>
- <element action="add" uuid="41971b51-8523-4c42-83a6-4ea29a618e4c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="acquistoServizio"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioni"/>
- <property name="to" value="\App\Models\AcquistoServizio"/>
- </element>
- <element action="add" uuid="3d14fd5b-7f78-49e4-831f-a98aa484a94f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Segnalazione"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioni"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="9d4fa7d0-23be-4bb2-99bd-67797c3244c0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Annotazione"/>
- <property name="inverse-alias" value="segnalazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="annotazioni"/>
- <property name="to" value="\App\Models\Segnalazione"/>
- </element>
- <element action="add" uuid="f5d31adf-5971-42f7-90bf-41571fe64218" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Annotazione"/>
- <property name="inverse-alias" value="user"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="annotazioni"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="719929c1-e0fe-4feb-950a-ba417c35a60c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\AllegatoAnnotazione"/>
- <property name="inverse-alias" value="annotazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="allegatiAnnotazione"/>
- <property name="to" value="\App\Models\Annotazione"/>
- </element>
- <element action="add" uuid="345b5351-9f8a-4d02-9192-1bb27645761d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Provincia"/>
- <property name="inverse-alias" value="nazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="provincie"/>
- <property name="to" value="\App\Models\Nazione"/>
- </element>
- <element action="add" uuid="4399e41c-477e-44d7-91db-b1cd4614f294" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Comune"/>
- <property name="inverse-alias" value="provincia"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="owner-alias" value="comuni"/>
- <property name="to" value="\App\Models\Provincia"/>
- </element>
- <element action="add" uuid="299d534d-b5ef-411c-b66b-f4adaaa3b4f1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Comune"/>
- <property name="inverse-alias" value="nazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="comuni"/>
- <property name="to" value="\App\Models\Nazione"/>
- </element>
- <element action="add" uuid="3842d2b3-d137-47bc-9a10-14b7a860c153" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoServizio"/>
- <property name="inverse-alias" value="user"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="contrattiServizio"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="4e4e7f6b-b25f-4a8a-8c8d-ab0e6ec93db7" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoServizio"/>
- <property name="inverse-alias" value="contrattoTemplate"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="contrattiServizio"/>
- <property name="to" value="\App\Models\ContrattoTemplate"/>
- </element>
- <element action="add" uuid="bf45bb05-0679-49af-a7e9-9ae9422675ab" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Offerta"/>
- <property name="inverse-alias" value="user"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="offerte"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\OffertaRiga"/>
- <property name="inverse-alias" value="offerta"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="offerteRiga"/>
- <property name="to" value="\App\Models\Offerta"/>
- </element>
- <element action="add" uuid="ad855143-f6b1-4d71-9d42-409e76e1efb7" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\OffertaRiga"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="offerteRiga"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="a005da89-ed4b-4145-bca2-b27aaa8fce4b" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\OrdineLavoro"/>
- <property name="inverse-alias" value="user"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="ordiniLavoro"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoTemplateTodo"/>
- <property name="inverse-alias" value="contrattoTemplate"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="contrattoTemplateTodos"/>
- <property name="to" value="\App\Models\ContrattoTemplate"/>
- </element>
- <element action="add" uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoServizioTodo"/>
- <property name="inverse-alias" value="contrattoServizio"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="contrattoServizioTodos"/>
- <property name="to" value="\App\Models\ContrattoServizio"/>
- </element>
- <element action="add" uuid="e29244ac-f1e5-4629-bf06-2d29d4a7664c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoServizioTodo"/>
- <property name="inverse-alias" value="contrattoTemplateTodo"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="contrattoServizioTodos"/>
- <property name="to" value="\App\Models\ContrattoTemplateTodo"/>
- </element>
- <element action="add" uuid="64df4dd6-cb23-408a-a4f1-e1a723103aa0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoTemplateRiga"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="contrattiTemplateRiga"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoTemplateRiga"/>
- <property name="inverse-alias" value="contrattoTemplate"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="contrattoTemplateRigas"/>
- <property name="to" value="\App\Models\ContrattoTemplate"/>
- </element>
- <element action="add" uuid="5c8d1dc1-15ed-4379-addb-6b0addcd047e" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoServizioRiga"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="contrattiServizioRiga"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ContrattoServizioRiga"/>
- <property name="inverse-alias" value="contrattoServizio"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="contrattoServizioRigas"/>
- <property name="to" value="\App\Models\ContrattoServizio"/>
- </element>
- <element action="add" uuid="d49573ad-aa71-43d3-a053-0858f655cd29" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\AcquistoServizio"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="acquistiServizio"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="c227ab02-8c3d-4a91-88a1-51e115f830a0" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\AcquistoServizio"/>
- <property name="inverse-alias" value="promoCode"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="acquistiServizio"/>
- <property name="to" value="\App\Models\PromoCode"/>
- </element>
- <element action="add" uuid="b4bf7317-84eb-4d04-889e-5a8fcf84b12f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\AcquistoServizio"/>
- <property name="inverse-alias" value="segnalazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="acquistoServizios"/>
- <property name="to" value="\App\Models\Segnalazione"/>
- </element>
- <element action="add" uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\ProdottoTodo"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="prodottoTodos"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\SegnalazioneTodo"/>
- <property name="inverse-alias" value="segnalazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="segnalazioneTodos"/>
- <property name="to" value="\App\Models\Segnalazione"/>
- </element>
- <element action="add" uuid="05c3f975-b61c-490e-aa04-080772b499ad" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\SegnalazioneTodo"/>
- <property name="inverse-alias" value="prodottoTodo"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="segnalazioneTodos"/>
- <property name="to" value="\App\Models\ProdottoTodo"/>
- </element>
- <element action="add" uuid="eb76c46e-4fae-41a5-8cca-e38e69788e6d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\SegnalazioneTodo"/>
- <property name="inverse-alias" value="completatoDa"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="owner-alias" value="segnalazioneTodos"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="f66c0c1c-a961-4b58-b5b9-46c97265ead5" parent-uuid="8399970c-2d0b-403e-996b-e86248cb3bc5" type="association-field">
- <property name="from" value="comune_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="867d2980-d54c-4b5c-8ab6-c07f0783c368" parent-uuid="787d90ec-5676-4749-9b36-cea959c6793b" type="association-field">
- <property name="from" value="azienda_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="d432694a-89df-447e-801d-24b276e2ac8c" parent-uuid="2fa65d03-8ddb-413f-8064-798860928786" type="association-field">
- <property name="from" value="assegnata_a_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="08699248-9392-4b75-b16b-ade34b487929" parent-uuid="6faa9818-b5b6-4eab-96b6-6eaf56d1de79" type="association-field">
- <property name="from" value="user_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="ff304b0f-2ee3-4290-8f70-d512cc0cedbe" parent-uuid="d586b98c-7daa-49d4-ada1-8c2c9223fb66" type="association-field">
- <property name="from" value="azienda_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="f88439b2-fde3-4839-896b-4fc572f767e0" parent-uuid="5f4ca39e-40ba-4157-bf4c-603b7469b044" type="association-field">
- <property name="from" value="contratto_servizio_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="b9b6e825-5ce8-4473-be84-81c0df564f89" parent-uuid="86aded2a-2e4e-4fc2-8702-5191cd073056" type="association-field">
- <property name="from" value="ordine_lavoro_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="14be7b69-4db0-40ea-bb4b-c32bec31da91" parent-uuid="faaed052-f628-4ae7-8f52-b3614fad893e" type="association-field">
- <property name="from" value="contratto_servizio_todo_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="e298ce6f-7e2c-4b7e-80e3-41c8cd31be5e" parent-uuid="41971b51-8523-4c42-83a6-4ea29a618e4c" type="association-field">
- <property name="from" value="acquisto_servizio_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="dfe269b5-36b7-4a6a-ad73-5195877c88f3" parent-uuid="3d14fd5b-7f78-49e4-831f-a98aa484a94f" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="76a290ad-9338-4ae7-a168-dd924d4c0b9f" parent-uuid="9d4fa7d0-23be-4bb2-99bd-67797c3244c0" type="association-field">
- <property name="from" value="segnalazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="1fb9c039-f291-4e4e-ac2f-c31f14db295b" parent-uuid="f5d31adf-5971-42f7-90bf-41571fe64218" type="association-field">
- <property name="from" value="user_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="c74b78f8-307e-4473-a96d-263d5f8908d2" parent-uuid="719929c1-e0fe-4feb-950a-ba417c35a60c" type="association-field">
- <property name="from" value="annotazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="8f51c513-0361-4147-b7ac-26b56c42011d" parent-uuid="345b5351-9f8a-4d02-9192-1bb27645761d" type="association-field">
- <property name="from" value="nazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="bb143e14-84bd-4e4a-bc86-6045f340856b" parent-uuid="4399e41c-477e-44d7-91db-b1cd4614f294" type="association-field">
- <property name="from" value="provincia_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="3bf703ca-9546-4b79-85c0-8febb961d821" parent-uuid="299d534d-b5ef-411c-b66b-f4adaaa3b4f1" type="association-field">
- <property name="from" value="nazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="cf09dd81-f27c-4eb3-a6b8-60c56ff9c629" parent-uuid="3842d2b3-d137-47bc-9a10-14b7a860c153" type="association-field">
- <property name="from" value="user_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="f5ecdcde-183a-44d3-9a40-6f73b49289cc" parent-uuid="4e4e7f6b-b25f-4a8a-8c8d-ab0e6ec93db7" type="association-field">
- <property name="from" value="contratto_template_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="a54053de-2584-4984-8dbc-ba5a1137571c" parent-uuid="bf45bb05-0679-49af-a7e9-9ae9422675ab" type="association-field">
- <property name="from" value="user_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="68a5419f-adef-4d6e-9b28-873c2fbc3d50" parent-uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" type="association-field">
- <property name="from" value="offerta_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="0e98c32c-512b-47c3-bc4f-b3ec66dff09f" parent-uuid="ad855143-f6b1-4d71-9d42-409e76e1efb7" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="ea6d7186-c6ee-401b-97b4-3274e72831c5" parent-uuid="a005da89-ed4b-4145-bca2-b27aaa8fce4b" type="association-field">
- <property name="from" value="user_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="585c20ce-9da8-4fe2-9926-0681cd0c32f1" parent-uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" type="association-field">
- <property name="from" value="contratto_template_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="599210f0-f87a-4280-badd-0717a4fbcd40" parent-uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" type="association-field">
- <property name="from" value="contratto_servizio_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="5b213914-00e8-4c89-9150-7022b294766a" parent-uuid="e29244ac-f1e5-4629-bf06-2d29d4a7664c" type="association-field">
- <property name="from" value="contratto_template_todo_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="ddbd2bf2-b433-47b1-9c3b-486b86f25032" parent-uuid="64df4dd6-cb23-408a-a4f1-e1a723103aa0" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="868068aa-7b93-4c95-ae09-588db5fe51e2" parent-uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" type="association-field">
- <property name="from" value="contratto_template_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="e1b63a6d-9fc1-48b8-8a2a-54a34489ff3a" parent-uuid="5c8d1dc1-15ed-4379-addb-6b0addcd047e" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="79825cde-3073-435d-9dec-fec172cbf19d" parent-uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" type="association-field">
- <property name="from" value="contratto_servizio_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="cbfb0c26-6096-4ff5-95ec-766af130bf9c" parent-uuid="d49573ad-aa71-43d3-a053-0858f655cd29" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="35849a96-4291-4068-a130-a6570917a0cc" parent-uuid="c227ab02-8c3d-4a91-88a1-51e115f830a0" type="association-field">
- <property name="from" value="promo_code_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="54f240d3-c752-4594-9da1-2f1f569d36c8" parent-uuid="b4bf7317-84eb-4d04-889e-5a8fcf84b12f" type="association-field">
- <property name="from" value="segnalazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="8739cbb8-97d0-4b24-bdf2-7218bba13cf2" parent-uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="7c11bde8-f541-4a43-aa6b-a8583a591dbe" parent-uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" type="association-field">
- <property name="from" value="segnalazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="86840487-55f9-4adc-b5fe-98379305f899" parent-uuid="05c3f975-b61c-490e-aa04-080772b499ad" type="association-field">
- <property name="from" value="prodotto_todo_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="1422f882-923a-4fb9-ba53-b782043d1aad" parent-uuid="eb76c46e-4fae-41a5-8cca-e38e69788e6d" type="association-field">
- <property name="from" value="completato_da_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="2f367518-de50-431b-a35b-845be0f0d6a1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="many-to-many">
- <property name="mn-entity" value="\App\Models\OrdineLavoroHasOfferta"/>
- </element>
- <element action="add" uuid="b628247f-6792-430c-970b-aa651c7f7870" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="many-to-many">
- <property name="mn-entity" value="\App\Models\PromoCodeHasProdotto"/>
- </element>
- <element action="add" uuid="23689857-4279-44e9-9a77-f58deb0455e3" parent-uuid="2f367518-de50-431b-a35b-845be0f0d6a1" type="many-to-many-entity">
- <property name="alias" value="offerte"/>
- <property name="name" value="\App\Models\Offerta"/>
- <property name="owning-side" value="true"/>
- </element>
- <element action="add" uuid="f557820c-6dac-427e-ac7c-ffa88be2cce4" parent-uuid="2f367518-de50-431b-a35b-845be0f0d6a1" type="many-to-many-entity">
- <property name="alias" value="ordiniLavoro"/>
- <property name="name" value="\App\Models\OrdineLavoro"/>
- <property name="owning-side" value="false"/>
- </element>
- <element action="add" uuid="b51dbffa-75cf-4b1a-92eb-83a8ac62d775" parent-uuid="b628247f-6792-430c-970b-aa651c7f7870" type="many-to-many-entity">
- <property name="alias" value="prodotti"/>
- <property name="name" value="\App\Models\Prodotto"/>
- <property name="owning-side" value="true"/>
- </element>
- <element action="add" uuid="90017630-36c3-4e45-b433-7eec25a364e8" parent-uuid="b628247f-6792-430c-970b-aa651c7f7870" type="many-to-many-entity">
- <property name="alias" value="promoCodes"/>
- <property name="name" value="\App\Models\PromoCode"/>
- <property name="owning-side" value="false"/>
- </element>
- <element action="add" uuid="565f4711-1df5-45ad-949d-8c08cc7d81ec" parent-uuid="23689857-4279-44e9-9a77-f58deb0455e3" type="many-to-many-field">
- <property name="from" value="offerta_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="bf9afc7e-7bb7-43dd-a081-3eac94839d30" parent-uuid="f557820c-6dac-427e-ac7c-ffa88be2cce4" type="many-to-many-field">
- <property name="from" value="ordine_lavoro_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="727ea3ce-db87-4aba-8a83-db60bda0e7e4" parent-uuid="b51dbffa-75cf-4b1a-92eb-83a8ac62d775" type="many-to-many-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="3155e17d-c9ee-4911-a98d-ca14e7351d0b" parent-uuid="90017630-36c3-4e45-b433-7eec25a364e8" type="many-to-many-field">
- <property name="from" value="promo_code_id"/>
- <property name="to" value="id"/>
- </element>
- </revision>
- <revision uuid="01bba22b-e663-4279-bf3f-f2d3ff5b54a3" date="2026-08-10 23:54:52.079861" exportable="true">
- <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">
- <property name="name" value="dominio_email"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="default_import_email"/>
- <property name="type" value="boolean"/>
- </element>
- <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"/>
- <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"/>
- </revision>
- <revision uuid="42581b1c-7407-4cb6-acd9-9bb4cb918b0a" date="2026-08-21 13:25:51.472661" exportable="true">
- <element action="add" uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="CasellaImap"/>
- <property name="name" value="\App\Models\CasellaImap"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="casella_imap"/>
- </element>
- <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">
- <property name="name" value="sconto_tipo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="sconto_valore"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="data_inizio"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="data_fine"/>
- <property name="type" value="date"/>
- </element>
- <element action="add" uuid="448cba2f-fa91-47fd-af2a-5493103bdb9b" parent-uuid="c0cde36a-3089-41f4-b895-0c1d963d12d1" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="nome"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="host"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="993"/>
- <property name="name" value="porta"/>
- <property name="type" value="smallInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="default" value="ssl"/>
- <property name="name" value="encryption"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="valida_certificato"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="username"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="password"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="imap"/>
- <property name="name" value="protocollo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="INBOX"/>
- <property name="name" value="cartella"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="cartella_processate"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="solo_non_lette"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="marca_come_letta"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="sposta_processate"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="default" value="1"/>
- <property name="name" value="attivo"/>
- <property name="type" value="boolean"/>
- </element>
- <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">
- <property name="name" value="ultimo_controllo_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="ultimo_errore"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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"/>
- <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"/>
- </revision>
- <revision uuid="8e0d5a3a-8eda-4844-b920-94f9725ffb7d" date="2026-08-21 22:36:25.479501" exportable="true">
- <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">
- <property name="type" value="longText"/>
- </element>
- </revision>
- <revision uuid="7f3f4ead-c952-4a36-adc9-28e57f9d6798" date="2026-08-21 23:01:49.125093" exportable="true">
- <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">
- <property name="default" value="0"/>
- <property name="name" value="responsabile_azienda"/>
- <property name="type" value="boolean"/>
- </element>
- <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"/>
- </revision>
- <revision uuid="3404b97d-dc5c-4338-b8dd-c14acb80c725" date="2026-08-26 15:23:46.436721" exportable="true">
- <element action="add" uuid="68922686-8dc2-403e-a281-a0efcdf39a82" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="Fattura"/>
- <property name="name" value="\App\Models\Fattura"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="fattura"/>
- </element>
- <element action="add" uuid="6cc482e6-604b-4e73-9870-36f4f2711362" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="FatturaRiga"/>
- <property name="name" value="\App\Models\FatturaRiga"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="fattura_riga"/>
- </element>
- <element action="add" uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="SegnalazioneSlot"/>
- <property name="name" value="\App\Models\SegnalazioneSlot"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="segnalazione_slot"/>
- </element>
- <element action="add" uuid="8d96db71-3d83-442b-8fde-d4ef73b998d1" parent-uuid="68922686-8dc2-403e-a281-a0efcdf39a82" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="user_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="created_by_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="numero"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="stato"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="data"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="data_scadenza"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="periodo_da"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="periodo_a"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="imponibile"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="iva_percentuale"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="iva"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="totale"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="note"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="path_file"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="ragione_sociale"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="piva"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="cod_fiscale"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="indirizzo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="email"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="telefono"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="meta"/>
- <property name="type" value="json"/>
- </element>
- <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">
- <property name="name" value="comune_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="c9bbfc3a-fa00-44c2-b098-5904d0b7b3e6" parent-uuid="6cc482e6-604b-4e73-9870-36f4f2711362" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="fattura_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="tipo"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="quantita"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="unita_misura"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="prezzo_unitario"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="sconto"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="iva_percentuale"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="importo"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="minuti"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="nota"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="name" value="annotazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="segnalazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_servizio_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="contratto_servizio_riga_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="ordine_lavoro_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="periodo_da"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="periodo_a"/>
- <property name="type" value="date"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="72d22456-ccc5-4806-9743-b91635948ea7" parent-uuid="e11f8bb2-17fd-4770-a490-a416d2d49f6c" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="segnalazione_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="starts_at"/>
- <property name="type" value="dateTime"/>
- </element>
- <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">
- <property name="name" value="ends_at"/>
- <property name="type" value="dateTime"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="add" uuid="8ca1b7f6-f59c-4a76-8b55-9eaa5729c588" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Fattura"/>
- <property name="inverse-alias" value="user"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fatture"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="a4d4341e-64c7-4fd1-bd5e-b5f457f94e15" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Fattura"/>
- <property name="inverse-alias" value="createdBy"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fattureCreate"/>
- <property name="to" value="\App\Models\User"/>
- </element>
- <element action="add" uuid="d8d39c1e-5b4e-444d-9fde-e86890e12662" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\Fattura"/>
- <property name="inverse-alias" value="comune"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="owner-alias" value="fatture"/>
- <property name="to" value="\App\Models\Comune"/>
- </element>
- <element action="add" uuid="d69021ca-1036-4659-b1bb-431dd895db02" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\FatturaRiga"/>
- <property name="inverse-alias" value="fattura"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="fatturaRighe"/>
- <property name="to" value="\App\Models\Fattura"/>
- </element>
- <element action="add" uuid="423b7b2d-3041-412c-8078-3720e48429d8" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\FatturaRiga"/>
- <property name="inverse-alias" value="annotazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fatturaRighe"/>
- <property name="to" value="\App\Models\Annotazione"/>
- </element>
- <element action="add" uuid="9a930ef5-48ae-4eba-97eb-840f54c682f1" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\FatturaRiga"/>
- <property name="inverse-alias" value="segnalazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fatturaRighe"/>
- <property name="to" value="\App\Models\Segnalazione"/>
- </element>
- <element action="add" uuid="d34a3b7a-91da-44d1-84d9-fa049248c00d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\FatturaRiga"/>
- <property name="inverse-alias" value="contrattoServizio"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fatturaRighe"/>
- <property name="to" value="\App\Models\ContrattoServizio"/>
- </element>
- <element action="add" uuid="f5fadc49-42d4-4c62-a53e-a293806c8783" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\FatturaRiga"/>
- <property name="inverse-alias" value="contrattoServizioRiga"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fatturaRighe"/>
- <property name="to" value="\App\Models\ContrattoServizioRiga"/>
- </element>
- <element action="add" uuid="6f844493-1bb4-40a9-bd78-97e979015333" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\FatturaRiga"/>
- <property name="inverse-alias" value="ordineLavoro"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fatturaRighe"/>
- <property name="to" value="\App\Models\OrdineLavoro"/>
- </element>
- <element action="add" uuid="72ab57bf-7877-458a-9891-90399ec44941" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\FatturaRiga"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="fatturaRighe"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\SegnalazioneSlot"/>
- <property name="inverse-alias" value="segnalazione"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="segnalazioneSlots"/>
- <property name="to" value="\App\Models\Segnalazione"/>
- </element>
- <element action="add" uuid="18643b0d-6874-4337-bf61-c6b57630a5da" parent-uuid="8ca1b7f6-f59c-4a76-8b55-9eaa5729c588" type="association-field">
- <property name="from" value="user_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="2660ac06-894c-4de9-a053-c47f76f5894f" parent-uuid="a4d4341e-64c7-4fd1-bd5e-b5f457f94e15" type="association-field">
- <property name="from" value="created_by_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="d954bd57-b5dc-440b-b623-27eda0482e2a" parent-uuid="d8d39c1e-5b4e-444d-9fde-e86890e12662" type="association-field">
- <property name="from" value="comune_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="2099a305-fbd4-4076-a85c-d0d3c96d0a5e" parent-uuid="d69021ca-1036-4659-b1bb-431dd895db02" type="association-field">
- <property name="from" value="fattura_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="2f341028-7afe-4bc0-b028-34052ac55978" parent-uuid="423b7b2d-3041-412c-8078-3720e48429d8" type="association-field">
- <property name="from" value="annotazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="fb426b82-ed78-4ad1-89ba-a48a66e19ec2" parent-uuid="9a930ef5-48ae-4eba-97eb-840f54c682f1" type="association-field">
- <property name="from" value="segnalazione_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="9809bfc1-664d-487e-a8b7-54419a018ab7" parent-uuid="d34a3b7a-91da-44d1-84d9-fa049248c00d" type="association-field">
- <property name="from" value="contratto_servizio_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="4d151ce4-d485-4b6e-b558-e6779a406b22" parent-uuid="f5fadc49-42d4-4c62-a53e-a293806c8783" type="association-field">
- <property name="from" value="contratto_servizio_riga_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="80800d7e-bdd2-4c2a-b4d7-b6d92a5ca8bf" parent-uuid="6f844493-1bb4-40a9-bd78-97e979015333" type="association-field">
- <property name="from" value="ordine_lavoro_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="1161edb2-e88f-4df3-a370-160def07904b" parent-uuid="72ab57bf-7877-458a-9891-90399ec44941" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="c75ea229-0d18-4d5e-8c5a-cb7cc0c8dff6" parent-uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" type="association-field">
- <property name="from" value="segnalazione_id"/>
- <property name="to" value="id"/>
- </element>
- </revision>
- <revision uuid="44d9ba7e-a043-4486-b25f-39fad8acf135" date="2026-08-26 15:39:03.736234" exportable="true">
- <element action="add" uuid="04287ee6-13fe-4b73-970a-aedefd569698" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="entity">
- <property name="fillableAll" value="as-fillable-all"/>
- <property name="local-name" value="OrdineLavoroRiga"/>
- <property name="name" value="\App\Models\OrdineLavoroRiga"/>
- <property name="namespace" value="\App\Models"/>
- <property name="table" value="ordine_lavoro_riga"/>
- </element>
- <element action="add" uuid="7ed8a1d0-2b4d-418b-b371-60d8ab5c6361" parent-uuid="04287ee6-13fe-4b73-970a-aedefd569698" type="field">
- <property name="auto-increment" value="true"/>
- <property name="name" value="id"/>
- <property name="primary" value="true"/>
- <property name="required" value="true"/>
- <property name="type" value="bigInteger"/>
- <property name="unique" value="true"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="ordine_lavoro_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="prodotto_id"/>
- <property name="type" value="bigInteger"/>
- <property name="unsigned" value="true"/>
- </element>
- <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">
- <property name="name" value="descrizione"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="quantita"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="unita_misura"/>
- <property name="type" value="string"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="prezzo_unitario"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="sconto"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="default" value="0"/>
- <property name="name" value="ordine"/>
- <property name="type" value="integer"/>
- </element>
- <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">
- <property name="name" value="note_private"/>
- <property name="type" value="text"/>
- </element>
- <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">
- <property name="decimal" value="2"/>
- <property name="name" value="tempo_stimato"/>
- <property name="size" value="10"/>
- <property name="type" value="decimal"/>
- </element>
- <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">
- <property name="name" value="created_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <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">
- <property name="name" value="updated_at"/>
- <property name="type" value="timestamp"/>
- </element>
- <element action="update" uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="righe"/>
- </element>
- <element action="update" uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="todos"/>
- </element>
- <element action="update" uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="todos"/>
- </element>
- <element action="update" uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="righe"/>
- </element>
- <element action="update" uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="righe"/>
- </element>
- <element action="update" uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="todos"/>
- </element>
- <element action="update" uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="todos"/>
- </element>
- <element action="update" uuid="d69021ca-1036-4659-b1bb-431dd895db02" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="righe"/>
- </element>
- <element action="update" uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="owner-alias" value="slots"/>
- </element>
- <element action="add" uuid="1e8af9f9-8d2e-4c16-8530-28e43a622c6d" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\OrdineLavoroRiga"/>
- <property name="inverse-alias" value="ordineLavoro"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="cascade"/>
- <property name="owner-alias" value="righe"/>
- <property name="to" value="\App\Models\OrdineLavoro"/>
- </element>
- <element action="add" uuid="350c8c4f-877e-4925-8385-b750d5f625da" parent-uuid="09bf51bf-3812-47d1-ab60-2ea025d5ee72" type="association">
- <property name="from" value="\App\Models\OrdineLavoroRiga"/>
- <property name="inverse-alias" value="prodotto"/>
- <property name="many-inverse" value="false"/>
- <property name="many-owner" value="true"/>
- <property name="onDelete" value="set null"/>
- <property name="owner-alias" value="ordineLavoroRigas"/>
- <property name="to" value="\App\Models\Prodotto"/>
- </element>
- <element action="add" uuid="bf0d5c13-4e24-4438-8e1f-dcc24809cbc6" parent-uuid="1e8af9f9-8d2e-4c16-8530-28e43a622c6d" type="association-field">
- <property name="from" value="ordine_lavoro_id"/>
- <property name="to" value="id"/>
- </element>
- <element action="add" uuid="6b67c71b-1af2-4f55-9a45-b7bdfe642ad9" parent-uuid="350c8c4f-877e-4925-8385-b750d5f625da" type="association-field">
- <property name="from" value="prodotto_id"/>
- <property name="to" value="id"/>
- </element>
- </revision>
- </migrations>
- </module>
- <visual-data>
- <association uuid="05c3f975-b61c-490e-aa04-080772b499ad" color="#969696"/>
- <association uuid="1e8af9f9-8d2e-4c16-8530-28e43a622c6d" color="#969696"/>
- <association uuid="299d534d-b5ef-411c-b66b-f4adaaa3b4f1" color="#969696"/>
- <association uuid="2fa65d03-8ddb-413f-8064-798860928786" color="#969696"/>
- <association uuid="345b5351-9f8a-4d02-9192-1bb27645761d" color="#969696"/>
- <association uuid="350c8c4f-877e-4925-8385-b750d5f625da" color="#969696"/>
- <association uuid="35b0ed5e-e7f9-4a4f-ad24-2547a9392e87" color="#969696"/>
- <association uuid="3842d2b3-d137-47bc-9a10-14b7a860c153" color="#969696"/>
- <association uuid="3d14fd5b-7f78-49e4-831f-a98aa484a94f" color="#969696"/>
- <association uuid="3e2b345d-f7f3-47e9-b6da-39b2c597e870" color="#969696"/>
- <association uuid="41971b51-8523-4c42-83a6-4ea29a618e4c" color="#969696"/>
- <association uuid="423b7b2d-3041-412c-8078-3720e48429d8" color="#969696"/>
- <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"/>
- <association uuid="4e4e7f6b-b25f-4a8a-8c8d-ab0e6ec93db7" color="#969696"/>
- <association uuid="5c8d1dc1-15ed-4379-addb-6b0addcd047e" color="#969696"/>
- <association uuid="5f4ca39e-40ba-4157-bf4c-603b7469b044" color="#969696"/>
- <association uuid="64df4dd6-cb23-408a-a4f1-e1a723103aa0" color="#969696"/>
- <association uuid="66d48b8b-7984-430a-92e7-fbe21fce135f" color="#969696"/>
- <association uuid="6debb5a0-4bc9-4e03-bafa-569e49949ad6" color="#969696"/>
- <association uuid="6f844493-1bb4-40a9-bd78-97e979015333" color="#969696"/>
- <association uuid="6faa9818-b5b6-4eab-96b6-6eaf56d1de79" color="#969696"/>
- <association uuid="719929c1-e0fe-4feb-950a-ba417c35a60c" color="#969696"/>
- <association uuid="72ab57bf-7877-458a-9891-90399ec44941" color="#969696"/>
- <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"/>
- <association uuid="79ac3c47-aa91-4b9f-a46d-b5aa7c818f6f" color="#969696"/>
- <association uuid="8399970c-2d0b-403e-996b-e86248cb3bc5" color="#969696"/>
- <association uuid="86aded2a-2e4e-4fc2-8702-5191cd073056" color="#969696"/>
- <association uuid="8ca1b7f6-f59c-4a76-8b55-9eaa5729c588" color="#969696"/>
- <association uuid="9a930ef5-48ae-4eba-97eb-840f54c682f1" color="#969696"/>
- <association uuid="9d4fa7d0-23be-4bb2-99bd-67797c3244c0" color="#969696"/>
- <association uuid="a005da89-ed4b-4145-bca2-b27aaa8fce4b" color="#969696"/>
- <association uuid="a4d4341e-64c7-4fd1-bd5e-b5f457f94e15" color="#969696"/>
- <association uuid="ad855143-f6b1-4d71-9d42-409e76e1efb7" color="#969696"/>
- <association uuid="ae43bea5-a4e1-4e9c-881c-ab2a91c7b743" color="#969696"/>
- <association uuid="b2867c66-0dcf-4a4c-99ce-cbdda8b11d6f" color="#969696"/>
- <association uuid="b4bf7317-84eb-4d04-889e-5a8fcf84b12f" color="#969696"/>
- <association uuid="bf45bb05-0679-49af-a7e9-9ae9422675ab" color="#969696"/>
- <association uuid="c227ab02-8c3d-4a91-88a1-51e115f830a0" color="#969696"/>
- <association uuid="d34a3b7a-91da-44d1-84d9-fa049248c00d" color="#969696"/>
- <association uuid="d49573ad-aa71-43d3-a053-0858f655cd29" color="#969696"/>
- <association uuid="d586b98c-7daa-49d4-ada1-8c2c9223fb66" color="#969696"/>
- <association uuid="d69021ca-1036-4659-b1bb-431dd895db02" color="#969696"/>
- <association uuid="d8d39c1e-5b4e-444d-9fde-e86890e12662" color="#969696"/>
- <association uuid="e29244ac-f1e5-4629-bf06-2d29d4a7664c" color="#969696"/>
- <association uuid="eb76c46e-4fae-41a5-8cca-e38e69788e6d" color="#969696"/>
- <association uuid="f5d31adf-5971-42f7-90bf-41571fe64218" color="#969696"/>
- <association uuid="f5fadc49-42d4-4c62-a53e-a293806c8783" color="#969696"/>
- <association uuid="faaed052-f628-4ae7-8f52-b3614fad893e" color="#969696"/>
- <association uuid="fdd9ee5a-9ae1-4736-8b9a-7e7fb84061b3" color="#969696"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <many-to-many-association uuid="2f367518-de50-431b-a35b-845be0f0d6a1" color="#969696"/>
- <many-to-many-association uuid="b628247f-6792-430c-970b-aa651c7f7870" color="#969696"/>
- <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"/>
- <project uuid="3072e02c-7554-4faa-a6bb-1bdf47958cd4" size-x="27" size-x2="1735" size-y="17" size-y2="1353"/>
- </visual-data>
- </skipper>
|