Formare Pret |
Top Previous |
Formarea pretului permite calcularea pretului final (de ofertare) in functie de valorile materialelor, adaosuri, accesorii etc
| ProcentRegieTamplarie "Procent Regie Tamplarie" = 0%; ProcentProfitTamplarie "Procent Profit Tamplarie" = 50%; ProcentRegieGeam "Procent Regie Geam" = 0%; ProcentProfitGeam "Procent Profit Geam" = 5%; ProcentRegieMontaj "Procent Regie Montaj" = 0%; ProcentProfitMontaj "Procent Profit Montaj" = 50%; |
Declara variabilele ce contin adausurile
SubtotalTamplarie "Subtotal Tamplarie" = Tamplarie + Feronerie + ManoperaTamplarie; RegieTamplarie "Regie Tamplarie" = SubtotalTamplarie * ProcentRegieTamplarie; ProfitTamplarie "Profit Tamplarie" = (SubtotalTamplarie + RegieTamplarie) * ProcentProfitTamplarie; ------------------------ TotalTamplarie "Total Tamplarie" = SubtotalTamplarie + RegieTamplarie + ProfitTamplarie; | SubtotalGeam "Subtotal Geam" = Geam + ManoperaGeam; RegieGeam "Regie Geam" = SubtotalGeam * ProcentRegieGeam; ProfitGeam "Profit Geam" = (SubtotalGeam + RegieGeam) * ProcentProfitGeam; ------------------------ TotalGeam "Total Geam" = SubtotalGeam + RegieGeam + ProfitGeam; | SubtotalMontaj "Subtotal Montaj" = Montaj + ManoperaMontaj; RegieMontaj "Regie Montaj" = SubtotalMontaj * ProcentRegieMontaj; ProfitMontaj "Profit Montaj" = (SubtotalMontaj + RegieMontaj) * ProcentProfitMontaj; ------------------------ TotalMontaj "Total Montaj" = SubtotalMontaj + RegieMontaj + ProfitMontaj; ------------------------ ------------------------ Subtotal "Subtotal" = SubtotalTamplarie + SubtotalGeam + SubtotalMontaj; RegieTotal "Total Regie" = RegieTamplarie + RegieGeam + RegieMontaj; ProfitTotal "Total Profit" = ProfitTamplarie + ProfitGeam + ProfitMontaj; ------------------------ Total "Total" = Subtotal + RegieTotal + ProfitTotal; PretAccesorii "Pret Accesorii" = Accesorii + MontajAccesorii; ------------------------ TotalPlusAccesorii "Total + Accesorii" = Total + PretAccesorii; // // Variabile folosite la listarea Ofertei // | | PretTamplarie "Pret Tamplarie" = TotalTamplarie + TotalGeam; PretMontaj "Pret Montaj" = TotalMontaj;
|