mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 19:44:12 +00:00
feat(youtube): add ROI cost fields to YouTubeContent
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ce4c21fd0a
commit
e4fea9db4c
1 changed files with 31 additions and 0 deletions
|
|
@ -651,6 +651,37 @@ export const YouTubeContent: CollectionConfig = {
|
|||
{ name: 'lastSyncedAt', type: 'date', label: 'Letzter Sync', admin: { readOnly: true } },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'costs',
|
||||
type: 'group',
|
||||
label: 'Kosten & Einnahmen',
|
||||
admin: {
|
||||
description: 'Für ROI-Berechnung (manuell pflegen)',
|
||||
},
|
||||
fields: [
|
||||
{
|
||||
name: 'estimatedProductionHours',
|
||||
type: 'number',
|
||||
label: 'Geschätzte Produktionsstunden',
|
||||
min: 0,
|
||||
},
|
||||
{
|
||||
name: 'estimatedProductionCost',
|
||||
type: 'number',
|
||||
label: 'Geschätzte Produktionskosten (EUR)',
|
||||
min: 0,
|
||||
},
|
||||
{
|
||||
name: 'estimatedRevenue',
|
||||
type: 'number',
|
||||
label: 'Geschätzte Einnahmen (EUR)',
|
||||
min: 0,
|
||||
admin: {
|
||||
description: 'AdSense + Sponsoring + Affiliate',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue