Revision 8734f2e2
Von Sven Schöling vor etwa 1 Jahr hinzugefügt
SL/DB/DeliveryOrder/TypeData.pm | ||
---|---|---|
55 | 55 |
edit => "sales_delivery_order_edit", |
56 | 56 |
view => "sales_delivery_order_edit | sales_delivery_order_view", |
57 | 57 |
}, |
58 |
features => { |
|
59 |
price_tax => 0, |
|
60 |
stock => 1, |
|
61 |
}, |
|
58 | 62 |
}, |
59 | 63 |
PURCHASE_DELIVERY_ORDER_TYPE() => { |
60 | 64 |
text => { |
... | ... | |
92 | 96 |
edit => "purchase_delivery_order_edit", |
93 | 97 |
view => "purchase_delivery_order_edit | purchase_delivery_order_view", |
94 | 98 |
}, |
99 |
features => { |
|
100 |
price_tax => 0, |
|
101 |
stock => 1, |
|
102 |
}, |
|
95 | 103 |
}, |
96 | 104 |
SUPPLIER_DELIVERY_ORDER_TYPE() => { |
97 | 105 |
text => { |
... | ... | |
129 | 137 |
edit => "purchase_delivery_order_edit", |
130 | 138 |
view => "purchase_delivery_order_edit | purchase_delivery_order_view", |
131 | 139 |
}, |
140 |
features => { |
|
141 |
price_tax => 0, |
|
142 |
stock => 1, |
|
143 |
}, |
|
132 | 144 |
}, |
133 | 145 |
RMA_DELIVERY_ORDER_TYPE() => { |
134 | 146 |
text => { |
... | ... | |
166 | 178 |
edit => "sales_delivery_order_edit", |
167 | 179 |
view => "sales_delivery_order_edit | sales_delivery_order_view", |
168 | 180 |
}, |
181 |
features => { |
|
182 |
price_tax => 0, |
|
183 |
stock => 1, |
|
184 |
}, |
|
169 | 185 |
}, |
170 | 186 |
); |
171 | 187 |
|
SL/DB/Helper/TypeDataProxy.pm | ||
---|---|---|
39 | 39 |
_via("get3", [ "workflow" ], @_); |
40 | 40 |
} |
41 | 41 |
|
42 |
sub features { |
|
43 |
_via("get3", [ "features" ], @_); |
|
44 |
} |
|
45 |
|
|
42 | 46 |
sub part_classification_query { |
43 | 47 |
_via("get", [ "part_classification_query" ], @_); |
44 | 48 |
} |
SL/DB/Order/TypeData.pm | ||
---|---|---|
62 | 62 |
edit => "sales_order_edit", |
63 | 63 |
view => "sales_order_edit | sales_order_view", |
64 | 64 |
}, |
65 |
features => { |
|
66 |
price_tax => 1, |
|
67 |
stock => 0, |
|
68 |
}, |
|
65 | 69 |
}, |
66 | 70 |
PURCHASE_ORDER_TYPE() => { |
67 | 71 |
text => { |
... | ... | |
99 | 103 |
edit => "purchase_order_edit", |
100 | 104 |
view => "purchase_order_edit | purchase_order_view", |
101 | 105 |
}, |
106 |
features => { |
|
107 |
price_tax => 1, |
|
108 |
stock => 0, |
|
109 |
}, |
|
102 | 110 |
}, |
103 | 111 |
SALES_QUOTATION_TYPE() => { |
104 | 112 |
text => { |
... | ... | |
143 | 151 |
edit => "sales_quotation_edit", |
144 | 152 |
view => "sales_quotation_edit | sales_quotation_view", |
145 | 153 |
}, |
154 |
features => { |
|
155 |
price_tax => 1, |
|
156 |
stock => 0, |
|
157 |
}, |
|
146 | 158 |
}, |
147 | 159 |
REQUEST_QUOTATION_TYPE() => { |
148 | 160 |
text => { |
... | ... | |
180 | 192 |
edit => "purchase_quotation_edit", |
181 | 193 |
view => "purchase_quotation_edit | purchase_quotation_view", |
182 | 194 |
}, |
195 |
features => { |
|
196 |
price_tax => 1, |
|
197 |
stock => 0, |
|
198 |
}, |
|
183 | 199 |
}, |
184 | 200 |
); |
185 | 201 |
|
SL/DB/Reclamation/TypeData.pm | ||
---|---|---|
43 | 43 |
rights => { |
44 | 44 |
edit => "sales_reclamation_edit", |
45 | 45 |
}, |
46 |
features => { |
|
47 |
price_tax => 1, |
|
48 |
stock => 0, |
|
49 |
}, |
|
46 | 50 |
}, |
47 | 51 |
PURCHASE_RECLAMATION_TYPE() => { |
48 | 52 |
text => { |
... | ... | |
70 | 74 |
rights => { |
71 | 75 |
edit => "purchase_reclamation_edit", |
72 | 76 |
}, |
77 |
features => { |
|
78 |
price_tax => 1, |
|
79 |
stock => 0, |
|
80 |
}, |
|
73 | 81 |
}, |
74 | 82 |
); |
75 | 83 |
|
Auch abrufbar als: Unified diff
TypeData: features