Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 2ae9ca71

Von Bernd Bleßmann vor mehr als 1 Jahr hinzugefügt

  • ID 2ae9ca71c358bf272781eab7afdf4c28fc84c769
  • Vorgänger abcea474
  • Nachfolger 549bb6d9

Auftrags-Eingang: DMS

Unterschiede anzeigen:

SL/Controller/File.pm
# right: access right used for import
my %file_types = (
'sales_quotation' => { gen => 1, gltype => '', dir =>'SalesQuotation', model => 'Order', right => 'import_ar' },
'sales_order_intake' => { gen => 5, gltype => '', dir =>'SalesOrderIntake', model => 'Order', right => 'import_ar' },
'sales_order' => { gen => 5, gltype => '', dir =>'SalesOrder', model => 'Order', right => 'import_ar' },
'sales_delivery_order' => { gen => 1, gltype => '', dir =>'SalesDeliveryOrder', model => 'DeliveryOrder', right => 'import_ar' },
'sales_reclamation' => { gen => 5, gltype => '', dir =>'SalesReclamation', model => 'Reclamation', right => 'import_ar' },
sql/Pg-upgrade2/file_storage_sales_order_intake.sql
-- @tag: file_storage_sales_order_intake
-- @description: Dateispeicher auch für Auftragseingänge
-- @depends: file_storage_partial_invoices
ALTER TABLE files
DROP CONSTRAINT valid_type;
ALTER TABLE files
ADD CONSTRAINT valid_type CHECK (
(object_type = 'credit_note' ) OR (object_type = 'invoice' )
OR (object_type = 'sales_order' ) OR (object_type = 'sales_order_intake' )
OR (object_type = 'sales_quotation' ) OR (object_type = 'sales_delivery_order' ) OR (object_type = 'request_quotation' )
OR (object_type = 'purchase_order' ) OR (object_type = 'purchase_delivery_order' ) OR (object_type = 'purchase_invoice' )
OR (object_type = 'vendor' ) OR (object_type = 'customer' ) OR (object_type = 'part' )
OR (object_type = 'gl_transaction' ) OR (object_type = 'dunning' ) OR (object_type = 'dunning1' )
OR (object_type = 'dunning2' ) OR (object_type = 'dunning3' ) OR (object_type = 'dunning_orig_invoice' )
OR (object_type = 'dunning_invoice' ) OR (object_type = 'draft' ) OR (object_type = 'statement' )
OR (object_type = 'shop_image' ) OR (object_type = 'letter' ) OR (object_type = 'project' )
OR (object_type = 'invoice_for_advance_payment') OR (object_type = 'final_invoice')
);

Auch abrufbar als: Unified diff