Revision a833f755
Von Tamino Steinert vor mehr als 1 Jahr hinzugefügt
SL/DB/DeliveryOrder.pm | ||
---|---|---|
62 | 62 |
sub add_items { goto &add_orderitems; } |
63 | 63 |
sub payment_terms { goto &payment; } |
64 | 64 |
sub record_number { goto &donumber; } |
65 |
sub record_type { goto &type; } |
|
65 | 66 |
|
66 | 67 |
sub sales_order { |
67 | 68 |
my $self = shift; |
SL/DB/Invoice.pm | ||
---|---|---|
93 | 93 |
sub items { goto &invoiceitems; } |
94 | 94 |
sub add_items { goto &add_invoiceitems; } |
95 | 95 |
sub record_number { goto &invnumber; }; |
96 |
sub record_type { goto &type; }; |
|
96 | 97 |
|
97 | 98 |
sub is_sales { |
98 | 99 |
# For compatibility with Order, DeliveryOrder |
SL/DB/Order.pm | ||
---|---|---|
139 | 139 |
sub items { goto &orderitems; } |
140 | 140 |
sub add_items { goto &add_orderitems; } |
141 | 141 |
sub record_number { goto &number; } |
142 |
sub record_type { goto &type; } |
|
142 | 143 |
|
143 | 144 |
sub type { |
144 | 145 |
my $self = shift; |
SL/DB/PurchaseInvoice.pm | ||
---|---|---|
62 | 62 |
sub items { goto &invoiceitems; } |
63 | 63 |
sub add_items { goto &add_invoiceitems; } |
64 | 64 |
sub record_number { goto &invnumber; } |
65 |
sub record_type { goto &invoice_type; } |
|
65 | 66 |
|
66 | 67 |
sub is_sales { |
67 | 68 |
# For compatibility with Order, DeliveryOrder |
SL/DB/Reclamation.pm | ||
---|---|---|
135 | 135 |
sub items { goto &reclamation_items; } |
136 | 136 |
sub add_items { goto &add_reclamation_items; } |
137 | 137 |
sub record_items { goto &reclamation_items; } |
138 |
sub record_type { goto &type; } |
|
138 | 139 |
|
139 | 140 |
sub type { |
140 | 141 |
my ($self) = @_; |
Auch abrufbar als: Unified diff
record: Füge record_type Key zu allen Belegobjekte hinzu