ayuda para crear bodega en c++

Iniciado por krizalid1, 5 Junio 2012, 06:51 AM

0 Miembros y 1 Visitante están viendo este tema.

krizalid1

Hola soy muy novato en programacion y necesito que por favor me den algunas ideas para empezar a hacer un programa que me pidieron en un curso.
necesito ideas de como empezar y asi voy creando el codigo y publicando mis dudas para resolverlas. habia pensado en una lista perono se si esta bien.
aqui  dejo la informacion. de antemano gracias por la ayuda

crear un sistema que tenga la capacidad de administrar los productos que se almacenan en la Bodega , esta está organizada en pasillos, donde cada uno cuenta con dos Estanterías, que cada una de ellas tiene 4 niveles y a su vez 4 columnas donde se organizan los lotes de productos.  Debe considerarse que un lote de producto tiene un código, el nombre del producto, cantidad de productos en el lote y fecha de vencimiento del producto. De tal manera que se debe despachar aquel producto que este más pronto a vencer. La bodega está organizada así:

los productos son colocados con el montacargas y colocados en la ubicación que se identifica por el código siguiente FROJO11, que indica F, pasillo, ROJO el estante, 1 Nivel y 1 columna del estante.son diez estantes osea diez colores.
¿¿¿¿tengo que hacer diez listas y unirlas??????
en cada pasillo puedo almacenar 16 lotes de productos osea 4 niveles y 4 columnas

El sistema debe permitir
1.   Dar ingreso a un lote nuevo, proporcionando la ubicación que esta próxima disponible, considerar la fecha de vencimiento, para que los productos más viejos estén más cerca.
2.   Dar salida a una lista de lotes de producto, según solicitud de un cliente. Considerando que puede pedir varios y serán enviados en un camión.
3.   Reubicar un producto, cuando un producto este próximo a vencer debe moverse a una ubicación más cercana de haber lugares disponibles.

atte. krizalid1     :huh:

maxim_o

mmmm yo mas bien usaria una estructura.... con cada "variable" necesaria.
y las vas guardando en un archivo.....
Asi aunque cierres el programa sigues teniendo los datos en la memoria....

krizalid1

Crees que con una estructura solucionaria el problema porque tendria diez pasillos cada pasillo 4 niveles y 4 renglones por nivel quedaria algo asi

pasillo Azul  [1,1][1,2][1,3][1,4] 4 niveles y 4 renglones  serian 16 bloques
                  [2,1][2,2][2,3][2,4]
                  [3,1][3,2][3,3][3,4]
                  [4,1][4,2][4,3][4,4]

pasillo Rojo  [1,1][1,2][1,3][1,4] 4 niveles y 4 renglones  serian 16 bloques
                  [2,1][2,2][2,3][2,4]
                  [3,1][3,2][3,3][3,4]
                  [4,1][4,2][4,3][4,4]

seria algo asi y  ocho pasillos mas el usuario al momento de buscar solo ingresaria
un codigo FAZUL11 f=pasillo azul el estante 1 nivel 1 renglon. y para buscar en otro pasillo FROJOL14.
de aqui no se como iniciarlo porque tendria que unir todos los pasillo para buscar??
y devolver el resultado y poder mostrar todos los datos de los pasillos.
Por eso no se que tipo de estructura debo usar, pero dejame probar con una estructura haber como queda. si alguien tiene una idea mejor le agradeceria mucho la informacion .

maxim_o

UNa estructura con el nombre del pruducto, cantidad de productos en ese lote, y la fecha de caducidad.

Luego en la funcion de añadir producto abres el archivo en modo lectura y creas otro archivo auxiliar en modo escritura, vas leyendo las estructuras y comparando las fechas con el nuevo producto.
Vas escribiendo en el auxiliar "producto a producto" con un for y comparando las fechas con el nuevo , mientras la fecha de los productos "caduque" antes que la del nuevo produzto vas escribiendo en el archivo auxiliar esos y cuando la del nuevo producto caduque antes que uno del archivo escribes primero el nuevo y despues el viejo....

Asi grabarias en el archivo todos los produzctos por orden de la fecha de caducidad.
Cierras los archivos.
Borras el  antiguo archivo, y renombras el auxiliar a ese mismo nombre.

y ya tendrias todo ordenadito, ya la hora de listar es saber los numeros a que posiciones de pasillo y tal corresponden.... y con if mostrarlo

Por ejemplo tienes el numero 24...
Sabes que los 16 primeros numeros corresponden al pasillo 1
los 16 siguientes al 2 , etc etc

Por lo tanto estariamos en el pasillo 2 (numero 24), estariamos en el nivel 2 en la ultima posicion...
Vamos todo va por multiplos ...

1-16 (pasillo 1)---------> del 1 al 4 primer nivel , del 5 al 8, segundo nivel, etc etc




PD: Te lo explicao segun tu ultimo post.... Pero segun el primero cada pasillo tiene dos estanterias.
Por lo que cada pasillo almacenaria 32 produzcos... 16 en una y 16 en otra....


Espero que lo hayas entendido...

Un saludo

krizalid1

Ok comienzo a trabajar en el codigo y te cuento como me queda


atte. krizalid

krizalid1

Bueno hasta aqui e llegado solo pero tengo un problema no si si el codigo este bien
para eso lo publico para que me ayuden a corregirlo y tambien porque tengo una duda. cuando quiero iniciar el programa me abre el archivo pero al unirle un switch
el programa no corre.
me pueden ayudar realmente necesito ayuda.


:huh: :huh: :huh:





#include<iostream>
#include<stdio.h>
using namespace std;

const int cad=100;
const int maxi=4;
char findelinea[cad ];//
FILE *bodega;
struct pasillos//lote general del producto
       {
                //
               char pasillo;
               char estante[cad];
               int codigo;//codigo de producto
               char producto[cad];
               int piezas;//cantidad de productos en el lote
               char vencimiento[cad];
               int contador;
               char ubicacion[cad];//
               int status;                      //para cuando compares solo busca en la referencia
       };
       
struct Bodega
       {     
              struct pasillos blanco[maxi][maxi];
              struct pasillos amarillo[maxi][maxi];
              struct pasillos negro[maxi][maxi];
              struct pasillos rojo[maxi][maxi];
              struct pasillos plata[maxi][maxi];
              struct pasillos verde[maxi][maxi];
              struct pasillos lila[maxi][maxi];
              struct pasillos cafe[maxi][maxi];
              struct pasillos naranja[maxi][maxi];
              struct pasillos azul[maxi][maxi];
       }pricemart;
       
void llenarpricemart(){//lo utiliso solo para llenar de ceros el archivo
     cout<<"LLENAR ALMACEN"<<endl;
        for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.blanco[f][c].status=0;
                        pricemart.blanco[f][c].pasillo='A';
                        strcpy(pricemart.blanco[f][c].estante,"BLANCO");
                        sprintf (pricemart.blanco[f][c].ubicacion, "%c%s%i%i ",pricemart.blanco[f][c].pasillo,pricemart.blanco[f][c].estante,f+1,c+1 );
                        pricemart.blanco[f][c].codigo=0;
                        strcpy(pricemart.blanco[f][c].producto,"0");
                        pricemart.blanco[f][c].piezas=0;
                        strcpy(pricemart.blanco[f][c].vencimiento,"0");
                        }}
       for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){               
                        pricemart.amarillo[f][c].status=0; 
                        pricemart.amarillo[f][c].pasillo='A';
                        strcpy(pricemart.amarillo[f][c].estante,"AMARILLO");
                        sprintf (pricemart.amarillo[f][c].ubicacion, "%c%s%i%i ",pricemart.amarillo[f][c].pasillo,pricemart.amarillo[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.amarillo[f][c].codigo=0;
                        strcpy(pricemart.amarillo[f][c].producto,"0");
                        pricemart.amarillo[f][c].piezas=0;
                        strcpy(pricemart.amarillo[f][c].vencimiento,"0");
                        }}
     
      for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.negro[f][c].status=0;
                        pricemart.negro[f][c].pasillo='B';
                        strcpy(pricemart.negro[f][c].estante,"NEGRO");
                        sprintf (pricemart.negro[f][c].ubicacion, "%c%s%i%i ",pricemart.negro[f][c].pasillo,pricemart.negro[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.negro[f][c].codigo=0;
                        strcpy(pricemart.negro[f][c].producto,"0");
                        pricemart.negro[f][c].piezas=0;
                        strcpy(pricemart.negro[f][c].vencimiento,"0");
                        }}
      for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.rojo[f][c].status=0;
                        pricemart.rojo[f][c].pasillo='B';
                        strcpy(pricemart.rojo[f][c].estante,"ROJO");
                        sprintf (pricemart.rojo[f][c].ubicacion, "%c%s%i%i ",pricemart.rojo[f][c].pasillo,pricemart.rojo[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.rojo[f][c].codigo=0;
                        strcpy(pricemart.rojo[f][c].producto,"0");
                        pricemart.rojo[f][c].piezas=0;
                        strcpy(pricemart.rojo[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.plata[f][c].status=0;
                        pricemart.plata[f][c].pasillo='C';
                        strcpy(pricemart.plata[f][c].estante,"PLATA");
                        sprintf (pricemart.plata[f][c].ubicacion, "%c%s%i%i ",pricemart.plata[f][c].pasillo,pricemart.plata[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.plata[f][c].codigo=0;
                        strcpy(pricemart.plata[f][c].producto,"0");
                        pricemart.plata[f][c].piezas=0;
                        strcpy(pricemart.plata[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.verde[f][c].status=0;
                        pricemart.verde[f][c].pasillo='C';
                        strcpy(pricemart.verde[f][c].estante,"VERDE");
                        sprintf (pricemart.verde[f][c].ubicacion, "%c%s%i%i ",pricemart.verde[f][c].pasillo,pricemart.verde[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.verde[f][c].codigo=0;
                        strcpy(pricemart.verde[f][c].producto,"0");
                        pricemart.verde[f][c].piezas=0;
                        strcpy(pricemart.verde[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.lila[f][c].status=0;
                        pricemart.lila[f][c].pasillo='D';
                        strcpy(pricemart.lila[f][c].estante,"LILA");
                        sprintf (pricemart.lila[f][c].ubicacion, "%c%s%i%i ",pricemart.lila[f][c].pasillo,pricemart.lila[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.lila[f][c].codigo=0;
                        strcpy(pricemart.lila[f][c].producto,"0");
                        pricemart.lila[f][c].piezas=0;
                        strcpy(pricemart.lila[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.cafe[f][c].status=0;
                        pricemart.cafe[f][c].pasillo='D';
                        strcpy(pricemart.cafe[f][c].estante,"CAFE");
                        sprintf (pricemart.cafe[f][c].ubicacion, "%c%s%i%i ",pricemart.cafe[f][c].pasillo,pricemart.cafe[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.cafe[f][c].codigo=0;
                        strcpy(pricemart.cafe[f][c].producto,"0");
                        pricemart.cafe[f][c].piezas=0;
                        strcpy(pricemart.cafe[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.naranja[f][c].status=0;
                        pricemart.naranja[f][c].pasillo='E';
                        strcpy(pricemart.naranja[f][c].estante,"NARANJA");
                        sprintf (pricemart.naranja[f][c].ubicacion, "%c%s%i%i ",pricemart.naranja[f][c].pasillo,pricemart.naranja[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.naranja[f][c].codigo=0;
                        strcpy(pricemart.naranja[f][c].producto,"0");
                        pricemart.naranja[f][c].piezas=0;
                        strcpy(pricemart.naranja[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.azul[f][c].status=0;
                        pricemart.azul[f][c].pasillo='E';
                        strcpy(pricemart.azul[f][c].estante,"AZUL");
                        sprintf (pricemart.azul[f][c].ubicacion, "%c%s%i%i ",pricemart.azul[f][c].pasillo,pricemart.azul[f][c].estante,f+1,c+1 );
                        pricemart.azul[f][c].codigo=0;
                        strcpy(pricemart.azul[f][c].producto,"0");
                        pricemart.azul[f][c].piezas=0;
                        strcpy(pricemart.azul[f][c].vencimiento,"0");
                        fflush(stdin);}}
                                                                                                                                                             
     }//fin de llenado
         
void mostrarpricemart(){
     cout<<"lista de productos"<<endl;
     cout<<"PASILLO    "<<"ESTANTE    "<<"UBICACION    "<<"CODIGO    "  <<"NOMBRE    "  <<"PIEZAS    "  <<"F VENCIMIENTO "<<endl;
        for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        cout<<"  "<<pricemart.blanco[f][c].pasillo<<"\t   " << pricemart.blanco[f][c].estante <<"     "<< pricemart.blanco[f][c].ubicacion<<"      " << pricemart.blanco[f][c].codigo<<"\t      " << pricemart.blanco[f][c].producto<<"  \t" << pricemart.blanco[f][c].piezas<<"\t  " << pricemart.blanco[f][c].vencimiento <<endl;
                }   
        }       
        for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        cout<<"  "<<pricemart.amarillo[f][c].pasillo<<"\t   " << pricemart.amarillo[f][c].estante <<"   "<< pricemart.amarillo[f][c].ubicacion<<"    " << pricemart.amarillo[f][c].codigo<<"\t       " << pricemart.amarillo[f][c].producto<<"  \t" << pricemart.amarillo[f][c].piezas<<"\t  " << pricemart.amarillo[f][c].vencimiento <<endl;
                }
        }
     }//fin de mostrar datos
     
void grabar_fichero (){
     
     int f,c;
     bodega = fopen("price1.dat", "wb");
     if (bodega == NULL){
        printf ("\nERROR: No se ha podido abrir el archivo pricemat ");
        system("pause");
        exit(0);
     }
     else{
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.blanco[f][c], sizeof(pricemart.blanco), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.amarillo[f][c], sizeof(pricemart.amarillo), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.negro[f][c], sizeof(pricemart.negro), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.rojo[f][c], sizeof(pricemart.rojo), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.plata[f][c], sizeof(pricemart.plata), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.verde[f][c], sizeof(pricemart.verde), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.lila[f][c], sizeof(pricemart.lila), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.cafe[f][c], sizeof(pricemart.cafe), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.naranja[f][c], sizeof(pricemart.naranja), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.azul[f][c], sizeof(pricemart.azul), 1, bodega);
         }
         }
         fclose(bodega);
     }
}//fin de grabar     
       
void cargar_fichero(){//inicio de cargar fichero
          bodega=fopen("price1.dat","rb");
           if(bodega==NULL){
                cout<<"ERROR!!!!!"<<endl;
                cout<<"No se puede abrir el archivo"<<endl;
                cout<<"Compruebe que el archivo exita o intente otra vez"<<endl;           
                system("pause");
                }
                else{
                   
                   while(!feof(bodega)){
                   
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.blanco[f][c],sizeof(pricemart.blanco),1,bodega);
                                cout<<"  "<<pricemart.blanco[f][c].pasillo<<"\t   " << pricemart.blanco[f][c].estante <<"     "<< pricemart.blanco[f][c].ubicacion<<"      " << pricemart.blanco[f][c].codigo<<"\t      " << pricemart.blanco[f][c].producto<<"  \t" << pricemart.blanco[f][c].piezas<<"\t  " << pricemart.blanco[f][c].vencimiento<<" "<<pricemart.blanco[f][c].status <<endl;}}
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.amarillo[f][c],sizeof(pricemart.amarillo),1,bodega);
                                cout<<"  "<<pricemart.amarillo[f][c].pasillo<<"\t   " << pricemart.amarillo[f][c].estante <<"     "<< pricemart.amarillo[f][c].ubicacion<<"      " << pricemart.amarillo[f][c].codigo<<"\t      " << pricemart.amarillo[f][c].producto<<"  \t" << pricemart.amarillo[f][c].piezas<<"\t  " << pricemart.amarillo[f][c].vencimiento<<" "<<pricemart.amarillo[f][c].status <<endl;}}
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.negro[f][c],sizeof(pricemart.negro),1,bodega);
                                cout<<"  "<<pricemart.negro[f][c].pasillo<<"\t   " << pricemart.negro[f][c].estante <<"     "<< pricemart.negro[f][c].ubicacion<<"      " << pricemart.negro[f][c].codigo<<"\t      " << pricemart.negro[f][c].producto<<"  \t" << pricemart.negro[f][c].piezas<<"\t  " << pricemart.negro[f][c].vencimiento<<" "<<pricemart.negro[f][c].status <<endl;}}     
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.rojo[f][c],sizeof(pricemart.rojo),1,bodega);
                                cout<<"  "<<pricemart.rojo[f][c].pasillo<<"\t   " << pricemart.rojo[f][c].estante <<"     "<< pricemart.rojo[f][c].ubicacion<<"      " << pricemart.rojo[f][c].codigo<<"\t      " << pricemart.rojo[f][c].producto<<"  \t" << pricemart.rojo[f][c].piezas<<"\t  " << pricemart.rojo[f][c].vencimiento<<" "<<pricemart.rojo[f][c].status <<endl;}}     
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.plata[f][c],sizeof(pricemart.plata),1,bodega);
                                cout<<"  "<<pricemart.plata[f][c].pasillo<<"\t   " << pricemart.plata[f][c].estante <<"     "<< pricemart.plata[f][c].ubicacion<<"      " << pricemart.plata[f][c].codigo<<"\t      " << pricemart.plata[f][c].producto<<"  \t" << pricemart.plata[f][c].piezas<<"\t  " << pricemart.plata[f][c].vencimiento<<" "<<pricemart.plata[f][c].status <<endl;}}     
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.verde[f][c],sizeof(pricemart.verde),1,bodega);
                                cout<<"  "<<pricemart.verde[f][c].pasillo<<"\t   " << pricemart.verde[f][c].estante <<"     "<< pricemart.verde[f][c].ubicacion<<"      " << pricemart.verde[f][c].codigo<<"\t      " << pricemart.verde[f][c].producto<<"  \t" << pricemart.verde[f][c].piezas<<"\t  " << pricemart.verde[f][c].vencimiento<<" "<<pricemart.verde[f][c].status <<endl;}}   
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.lila[f][c],sizeof(pricemart.lila),1,bodega);
                                cout<<"  "<<pricemart.lila[f][c].pasillo<<"\t   " << pricemart.lila[f][c].estante <<"     "<< pricemart.lila[f][c].ubicacion<<"      " << pricemart.lila[f][c].codigo<<"\t      " << pricemart.lila[f][c].producto<<"  \t" << pricemart.lila[f][c].piezas<<"\t  " << pricemart.lila[f][c].vencimiento<<" "<<pricemart.lila[f][c].status <<endl;}}       
                       for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.cafe[f][c],sizeof(pricemart.cafe),1,bodega);
                                cout<<"  "<<pricemart.cafe[f][c].pasillo<<"\t   " << pricemart.cafe[f][c].estante <<"     "<< pricemart.cafe[f][c].ubicacion<<"      " << pricemart.cafe[f][c].codigo<<"\t      " << pricemart.cafe[f][c].producto<<"  \t" << pricemart.cafe[f][c].piezas<<"\t  " << pricemart.cafe[f][c].vencimiento<<" "<<pricemart.cafe[f][c].status <<endl;}}         
                       for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.naranja[f][c],sizeof(pricemart.naranja),1,bodega);
                                cout<<"  "<<pricemart.naranja[f][c].pasillo<<"\t   " << pricemart.naranja[f][c].estante <<"     "<< pricemart.naranja[f][c].ubicacion<<"      " << pricemart.naranja[f][c].codigo<<"\t      " << pricemart.naranja[f][c].producto<<"  \t" << pricemart.naranja[f][c].piezas<<"\t  " << pricemart.naranja[f][c].vencimiento<<" "<<pricemart.naranja[f][c].status <<endl;}}         
                       for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.azul[f][c],sizeof(pricemart.azul),1,bodega);
                                cout<<"  "<<pricemart.azul[f][c].pasillo<<"\t   " << pricemart.azul[f][c].estante <<"     "<< pricemart.azul[f][c].ubicacion<<"      " << pricemart.azul[f][c].codigo<<"\t      " << pricemart.azul[f][c].producto<<"  \t" << pricemart.azul[f][c].piezas<<"\t  " << pricemart.azul[f][c].vencimiento<<" "<<pricemart.azul[f][c].status <<endl;}}             
                    }
                     fclose(bodega);               
                }   
     
     }//fin de cargar fichero

  /* int menu(){//MENU DE OPCIONES
    system("color 0a");
    system("cls");
    int opcion;
    do{
    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
    cout<<"\t     "<<"+++++ "<<"A L M A C E N         P R I X E M A R T 'S"<<" +++++\n";
    cout<<"\t     "<<"+++++ "<<"C E N T R A L   DE   O P E R A C I O N E S"<<" +++++\n";
    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"; 

    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
    cout<<"\t\t\t "<<"+++++ "<<"MENU  PRINCIPAL"<<" +++++\n";
    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n";
    cout<<"\t** "<<"1.-  INGRESAR LOTE DE PRODUCTOS\n";
    cout<<"\t** "<<"2.-  SALIDA DE LOTE(S)DE PRODUCTO(S)\n";
    cout<<"\t** "<<"3.-  REUBICACION DE PRODUCTOS\n";
    cout<<"\t** "<<"4.-  LISTA DE PRODUCTOS\n";
    cout<<"\t** "<<"5.-  CONSULTAR POR PRODUCTO\n";
                   
    cout<<"\t** "<<"0.- SALIR\n";
    cout<<"ingrese su opcion"<<endl;
    fflush (stdin);
    scanf("%d",&opcion);
   
    }while((opcion<0) || (opcion>5 ));
    return opcion;
            }//FIN DE MENU

*/


//programa principal
main (){
       /*int opc; //al utilizar este codigo el fichero no se carga
     bool salir=false;

     cargar_fichero();//el problema es aqui el fichero no se carga
     system("pause");
     mostrarpricemart();
     system("pause");
     while(!salir)
     {
      opc=menu();
          switch(opc){
                      case 1: cout<<"ingreso lote de productos"<<endl;
                              cargar_fichero();
                              system("pause");             
                      break;
                      case 2: cout<<"salida lote de productos"<<endl;
                              mostrarpricemart();
                              system("pause");             
                      break;
                      case 3: cout<<"reubicacion"<<endl;
                              system("pause");             
                      break;
                      case 4: cout<<"lista de productos"<<endl;
                              system("pause");             
                      break;
                      case 5: cout<<"consultar por productos"<<endl;
                              system("pause");             
                      break;
                      default: cout<<"Ingreso no valido intente otra vez"<<endl;
                               system("pause");             
                      break;
                      case 0:
                             cout<<"HA SALIDO DE LA APLICACION"<<endl;
                             salir=true;
                      break;
                     
                      }//fin de swicht             
      }//fin de while
     
 
  */   
cargar_fichero();        // Aqui carga el fichero el problema es que al unirlo al switch ya no carga
//al eliminar este codigo y utilizar el sitch ya no carga el fichero
//llenarpricemart(); //lo utilice una vez para llenar el archivo de ceros
system("pause");

grabar_fichero();
system("pause");
cargar_fichero(); 
system("pause");

     }
     
     
     

durasno

Hola! usa la etiqueta GeSHi para poner codigo, tal ves asi la gente tenga mas ganas de responder
Ahorrate una pregunta, lee el man

krizalid1

Ok gracias durasno.
Estaba revisando la forma de grabar en el archivo y corregir errores
pero si necesitaria alguna ayuda de alguien que sepa para orientarme y poder seguir con el codigo hasta completarlo.




Código (cpp) [Seleccionar]

#include<iostream>
#include<stdio.h>
using namespace std;

const int cad=100;
const int maxi=4;
char findelinea[cad ];//
FILE *bodega;
struct pasillos//lote general del producto
       {
                //
               char pasillo;
               char estante[cad];
               int codigo;//codigo de producto
               char producto[cad];
               int piezas;//cantidad de productos en el lote
               char vencimiento[cad];
               int contador;
               char ubicacion[cad];//
               int status;                      //para cuando compares solo busca en la referencia
       };
       
struct Bodega
       {     
              struct pasillos blanco[maxi][maxi];
              struct pasillos amarillo[maxi][maxi];
              struct pasillos negro[maxi][maxi];
              struct pasillos rojo[maxi][maxi];
              struct pasillos plata[maxi][maxi];
              struct pasillos verde[maxi][maxi];
              struct pasillos lila[maxi][maxi];
              struct pasillos cafe[maxi][maxi];
              struct pasillos naranja[maxi][maxi];
              struct pasillos azul[maxi][maxi];
       }pricemart;
       
void llenarpricemart(){//lo utiliso solo para llenar de ceros el archivo
     cout<<"LLENAR ALMACEN"<<endl;
        for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.blanco[f][c].status=0;
                        pricemart.blanco[f][c].pasillo='A';
                        strcpy(pricemart.blanco[f][c].estante,"BLANCO");
                        sprintf (pricemart.blanco[f][c].ubicacion, "%c%s%i%i ",pricemart.blanco[f][c].pasillo,pricemart.blanco[f][c].estante,f+1,c+1 );
                        pricemart.blanco[f][c].codigo=0;
                        strcpy(pricemart.blanco[f][c].producto,"0");
                        pricemart.blanco[f][c].piezas=0;
                        strcpy(pricemart.blanco[f][c].vencimiento,"0");
                        }}
       for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){               
                        pricemart.amarillo[f][c].status=0; 
                        pricemart.amarillo[f][c].pasillo='A';
                        strcpy(pricemart.amarillo[f][c].estante,"AMARILLO");
                        sprintf (pricemart.amarillo[f][c].ubicacion, "%c%s%i%i ",pricemart.amarillo[f][c].pasillo,pricemart.amarillo[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.amarillo[f][c].codigo=0;
                        strcpy(pricemart.amarillo[f][c].producto,"0");
                        pricemart.amarillo[f][c].piezas=0;
                        strcpy(pricemart.amarillo[f][c].vencimiento,"0");
                        }}
     
      for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.negro[f][c].status=0;
                        pricemart.negro[f][c].pasillo='B';
                        strcpy(pricemart.negro[f][c].estante,"NEGRO");
                        sprintf (pricemart.negro[f][c].ubicacion, "%c%s%i%i ",pricemart.negro[f][c].pasillo,pricemart.negro[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.negro[f][c].codigo=0;
                        strcpy(pricemart.negro[f][c].producto,"0");
                        pricemart.negro[f][c].piezas=0;
                        strcpy(pricemart.negro[f][c].vencimiento,"0");
                        }}
      for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.rojo[f][c].status=0;
                        pricemart.rojo[f][c].pasillo='B';
                        strcpy(pricemart.rojo[f][c].estante,"ROJO");
                        sprintf (pricemart.rojo[f][c].ubicacion, "%c%s%i%i ",pricemart.rojo[f][c].pasillo,pricemart.rojo[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.rojo[f][c].codigo=0;
                        strcpy(pricemart.rojo[f][c].producto,"0");
                        pricemart.rojo[f][c].piezas=0;
                        strcpy(pricemart.rojo[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.plata[f][c].status=0;
                        pricemart.plata[f][c].pasillo='C';
                        strcpy(pricemart.plata[f][c].estante,"PLATA");
                        sprintf (pricemart.plata[f][c].ubicacion, "%c%s%i%i ",pricemart.plata[f][c].pasillo,pricemart.plata[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.plata[f][c].codigo=0;
                        strcpy(pricemart.plata[f][c].producto,"0");
                        pricemart.plata[f][c].piezas=0;
                        strcpy(pricemart.plata[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.verde[f][c].status=0;
                        pricemart.verde[f][c].pasillo='C';
                        strcpy(pricemart.verde[f][c].estante,"VERDE");
                        sprintf (pricemart.verde[f][c].ubicacion, "%c%s%i%i ",pricemart.verde[f][c].pasillo,pricemart.verde[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.verde[f][c].codigo=0;
                        strcpy(pricemart.verde[f][c].producto,"0");
                        pricemart.verde[f][c].piezas=0;
                        strcpy(pricemart.verde[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.lila[f][c].status=0;
                        pricemart.lila[f][c].pasillo='D';
                        strcpy(pricemart.lila[f][c].estante,"LILA");
                        sprintf (pricemart.lila[f][c].ubicacion, "%c%s%i%i ",pricemart.lila[f][c].pasillo,pricemart.lila[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.lila[f][c].codigo=0;
                        strcpy(pricemart.lila[f][c].producto,"0");
                        pricemart.lila[f][c].piezas=0;
                        strcpy(pricemart.lila[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.cafe[f][c].status=0;
                        pricemart.cafe[f][c].pasillo='D';
                        strcpy(pricemart.cafe[f][c].estante,"CAFE");
                        sprintf (pricemart.cafe[f][c].ubicacion, "%c%s%i%i ",pricemart.cafe[f][c].pasillo,pricemart.cafe[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.cafe[f][c].codigo=0;
                        strcpy(pricemart.cafe[f][c].producto,"0");
                        pricemart.cafe[f][c].piezas=0;
                        strcpy(pricemart.cafe[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.naranja[f][c].status=0;
                        pricemart.naranja[f][c].pasillo='E';
                        strcpy(pricemart.naranja[f][c].estante,"NARANJA");
                        sprintf (pricemart.naranja[f][c].ubicacion, "%c%s%i%i ",pricemart.naranja[f][c].pasillo,pricemart.naranja[f][c].estante,f+1,c+1 );
                        fflush(stdin);
                        pricemart.naranja[f][c].codigo=0;
                        strcpy(pricemart.naranja[f][c].producto,"0");
                        pricemart.naranja[f][c].piezas=0;
                        strcpy(pricemart.naranja[f][c].vencimiento,"0");
                        }}
     for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        pricemart.azul[f][c].status=0;
                        pricemart.azul[f][c].pasillo='E';
                        strcpy(pricemart.azul[f][c].estante,"AZUL");
                        sprintf (pricemart.azul[f][c].ubicacion, "%c%s%i%i ",pricemart.azul[f][c].pasillo,pricemart.azul[f][c].estante,f+1,c+1 );
                        pricemart.azul[f][c].codigo=0;
                        strcpy(pricemart.azul[f][c].producto,"0");
                        pricemart.azul[f][c].piezas=0;
                        strcpy(pricemart.azul[f][c].vencimiento,"0");
                        fflush(stdin);}}
                                                                                                                                                             
     }//fin de llenado
         
void mostrarpricemart(){
     cout<<"lista de productos"<<endl;
     cout<<"PASILLO    "<<"ESTANTE    "<<"UBICACION    "<<"CODIGO    "  <<"NOMBRE    "  <<"PIEZAS    "  <<"F VENCIMIENTO "<<endl;
        for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        cout<<"  "<<pricemart.blanco[f][c].pasillo<<"\t   " << pricemart.blanco[f][c].estante <<"     "<< pricemart.blanco[f][c].ubicacion<<"      " << pricemart.blanco[f][c].codigo<<"\t      " << pricemart.blanco[f][c].producto<<"  \t" << pricemart.blanco[f][c].piezas<<"\t  " << pricemart.blanco[f][c].vencimiento <<endl;
                }   
        }       
        for(int f=0; f<maxi; f++){
                for(int c=0; c<maxi; c++){
                        cout<<"  "<<pricemart.amarillo[f][c].pasillo<<"\t   " << pricemart.amarillo[f][c].estante <<"   "<< pricemart.amarillo[f][c].ubicacion<<"    " << pricemart.amarillo[f][c].codigo<<"\t       " << pricemart.amarillo[f][c].producto<<"  \t" << pricemart.amarillo[f][c].piezas<<"\t  " << pricemart.amarillo[f][c].vencimiento <<endl;
                }
        }
     }//fin de mostrar datos
     
void grabar_fichero (){
     
     int f,c;
     bodega = fopen("price1.dat", "wb");
     if (bodega == NULL){
        printf ("\nERROR: No se ha podido abrir el archivo pricemat ");
        system("pause");
        exit(0);
     }
     else{
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.blanco[f][c], sizeof(pricemart.blanco), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.amarillo[f][c], sizeof(pricemart.amarillo), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.negro[f][c], sizeof(pricemart.negro), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.rojo[f][c], sizeof(pricemart.rojo), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.plata[f][c], sizeof(pricemart.plata), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.verde[f][c], sizeof(pricemart.verde), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.lila[f][c], sizeof(pricemart.lila), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.cafe[f][c], sizeof(pricemart.cafe), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.naranja[f][c], sizeof(pricemart.naranja), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.azul[f][c], sizeof(pricemart.azul), 1, bodega);
         }
         }
         fclose(bodega);
     }
}//fin de grabar     
       
void cargar_fichero(){//inicio de cargar fichero
          bodega=fopen("price1.dat","rb");
           if(bodega==NULL){
                cout<<"ERROR!!!!!"<<endl;
                cout<<"No se puede abrir el archivo"<<endl;
                cout<<"Compruebe que el archivo exita o intente otra vez"<<endl;           
                system("pause");
                }
                else{
                   
                   while(!feof(bodega)){
                   
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.blanco[f][c],sizeof(pricemart.blanco),1,bodega);
                                cout<<"  "<<pricemart.blanco[f][c].pasillo<<"\t   " << pricemart.blanco[f][c].estante <<"     "<< pricemart.blanco[f][c].ubicacion<<"      " << pricemart.blanco[f][c].codigo<<"\t      " << pricemart.blanco[f][c].producto<<"  \t" << pricemart.blanco[f][c].piezas<<"\t  " << pricemart.blanco[f][c].vencimiento<<" "<<pricemart.blanco[f][c].status <<endl;}}
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.amarillo[f][c],sizeof(pricemart.amarillo),1,bodega);
                                cout<<"  "<<pricemart.amarillo[f][c].pasillo<<"\t   " << pricemart.amarillo[f][c].estante <<"     "<< pricemart.amarillo[f][c].ubicacion<<"      " << pricemart.amarillo[f][c].codigo<<"\t      " << pricemart.amarillo[f][c].producto<<"  \t" << pricemart.amarillo[f][c].piezas<<"\t  " << pricemart.amarillo[f][c].vencimiento<<" "<<pricemart.amarillo[f][c].status <<endl;}}
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.negro[f][c],sizeof(pricemart.negro),1,bodega);
                                cout<<"  "<<pricemart.negro[f][c].pasillo<<"\t   " << pricemart.negro[f][c].estante <<"     "<< pricemart.negro[f][c].ubicacion<<"      " << pricemart.negro[f][c].codigo<<"\t      " << pricemart.negro[f][c].producto<<"  \t" << pricemart.negro[f][c].piezas<<"\t  " << pricemart.negro[f][c].vencimiento<<" "<<pricemart.negro[f][c].status <<endl;}}     
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.rojo[f][c],sizeof(pricemart.rojo),1,bodega);
                                cout<<"  "<<pricemart.rojo[f][c].pasillo<<"\t   " << pricemart.rojo[f][c].estante <<"     "<< pricemart.rojo[f][c].ubicacion<<"      " << pricemart.rojo[f][c].codigo<<"\t      " << pricemart.rojo[f][c].producto<<"  \t" << pricemart.rojo[f][c].piezas<<"\t  " << pricemart.rojo[f][c].vencimiento<<" "<<pricemart.rojo[f][c].status <<endl;}}     
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.plata[f][c],sizeof(pricemart.plata),1,bodega);
                                cout<<"  "<<pricemart.plata[f][c].pasillo<<"\t   " << pricemart.plata[f][c].estante <<"     "<< pricemart.plata[f][c].ubicacion<<"      " << pricemart.plata[f][c].codigo<<"\t      " << pricemart.plata[f][c].producto<<"  \t" << pricemart.plata[f][c].piezas<<"\t  " << pricemart.plata[f][c].vencimiento<<" "<<pricemart.plata[f][c].status <<endl;}}     
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.verde[f][c],sizeof(pricemart.verde),1,bodega);
                                cout<<"  "<<pricemart.verde[f][c].pasillo<<"\t   " << pricemart.verde[f][c].estante <<"     "<< pricemart.verde[f][c].ubicacion<<"      " << pricemart.verde[f][c].codigo<<"\t      " << pricemart.verde[f][c].producto<<"  \t" << pricemart.verde[f][c].piezas<<"\t  " << pricemart.verde[f][c].vencimiento<<" "<<pricemart.verde[f][c].status <<endl;}}   
                        for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.lila[f][c],sizeof(pricemart.lila),1,bodega);
                                cout<<"  "<<pricemart.lila[f][c].pasillo<<"\t   " << pricemart.lila[f][c].estante <<"     "<< pricemart.lila[f][c].ubicacion<<"      " << pricemart.lila[f][c].codigo<<"\t      " << pricemart.lila[f][c].producto<<"  \t" << pricemart.lila[f][c].piezas<<"\t  " << pricemart.lila[f][c].vencimiento<<" "<<pricemart.lila[f][c].status <<endl;}}       
                       for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.cafe[f][c],sizeof(pricemart.cafe),1,bodega);
                                cout<<"  "<<pricemart.cafe[f][c].pasillo<<"\t   " << pricemart.cafe[f][c].estante <<"     "<< pricemart.cafe[f][c].ubicacion<<"      " << pricemart.cafe[f][c].codigo<<"\t      " << pricemart.cafe[f][c].producto<<"  \t" << pricemart.cafe[f][c].piezas<<"\t  " << pricemart.cafe[f][c].vencimiento<<" "<<pricemart.cafe[f][c].status <<endl;}}         
                       for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.naranja[f][c],sizeof(pricemart.naranja),1,bodega);
                                cout<<"  "<<pricemart.naranja[f][c].pasillo<<"\t   " << pricemart.naranja[f][c].estante <<"     "<< pricemart.naranja[f][c].ubicacion<<"      " << pricemart.naranja[f][c].codigo<<"\t      " << pricemart.naranja[f][c].producto<<"  \t" << pricemart.naranja[f][c].piezas<<"\t  " << pricemart.naranja[f][c].vencimiento<<" "<<pricemart.naranja[f][c].status <<endl;}}         
                       for (int f=0; f<maxi; f++){
                            for (int c=0; c<maxi; c++){       
                                fread(&pricemart.azul[f][c],sizeof(pricemart.azul),1,bodega);
                                cout<<"  "<<pricemart.azul[f][c].pasillo<<"\t   " << pricemart.azul[f][c].estante <<"     "<< pricemart.azul[f][c].ubicacion<<"      " << pricemart.azul[f][c].codigo<<"\t      " << pricemart.azul[f][c].producto<<"  \t" << pricemart.azul[f][c].piezas<<"\t  " << pricemart.azul[f][c].vencimiento<<" "<<pricemart.azul[f][c].status <<endl;}}             
                    }
                     fclose(bodega);               
                }   
     
     }//fin de cargar fichero

  /* int menu(){//MENU DE OPCIONES
    system("color 0a");
    system("cls");
    int opcion;
    do{
    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
    cout<<"\t     "<<"+++++ "<<"A L M A C E N         P R I X E M A R T 'S"<<" +++++\n";
    cout<<"\t     "<<"+++++ "<<"C E N T R A L   DE   O P E R A C I O N E S"<<" +++++\n";
    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"; 

    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
    cout<<"\t\t\t "<<"+++++ "<<"MENU  PRINCIPAL"<<" +++++\n";
    cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n";
    cout<<"\t** "<<"1.-  INGRESAR LOTE DE PRODUCTOS\n";
    cout<<"\t** "<<"2.-  SALIDA DE LOTE(S)DE PRODUCTO(S)\n";
    cout<<"\t** "<<"3.-  REUBICACION DE PRODUCTOS\n";
    cout<<"\t** "<<"4.-  LISTA DE PRODUCTOS\n";
    cout<<"\t** "<<"5.-  CONSULTAR POR PRODUCTO\n";
                   
    cout<<"\t** "<<"0.- SALIR\n";
    cout<<"ingrese su opcion"<<endl;
    fflush (stdin);
    scanf("%d",&opcion);
   
    }while((opcion<0) || (opcion>5 ));
    return opcion;
            }//FIN DE MENU

*/


//programa principal
main (){
       /*int opc; //al utilizar este codigo el fichero no se carga
     bool salir=false;

     cargar_fichero();//el problema es aqui el fichero no se carga
     system("pause");
     mostrarpricemart();
     system("pause");
     while(!salir)
     {
      opc=menu();
          switch(opc){
                      case 1: cout<<"ingreso lote de productos"<<endl;
                              cargar_fichero();
                              system("pause");             
                      break;
                      case 2: cout<<"salida lote de productos"<<endl;
                              mostrarpricemart();
                              system("pause");             
                      break;
                      case 3: cout<<"reubicacion"<<endl;
                              system("pause");             
                      break;
                      case 4: cout<<"lista de productos"<<endl;
                              system("pause");             
                      break;
                      case 5: cout<<"consultar por productos"<<endl;
                              system("pause");             
                      break;
                      default: cout<<"Ingreso no valido intente otra vez"<<endl;
                               system("pause");             
                      break;
                      case 0:
                             cout<<"HA SALIDO DE LA APLICACION"<<endl;
                             salir=true;
                      break;
                     
                      }//fin de swicht             
      }//fin de while
     
 
  */   
cargar_fichero();        // Aqui carga el fichero el problema es que al unirlo al switch ya no carga
//al eliminar este codigo y utilizar el sitch ya no carga el fichero
//llenarpricemart(); //lo utilice una vez para llenar el archivo de ceros
system("pause");

grabar_fichero();
system("pause");
cargar_fichero(); 
system("pause");

     }

krizalid1

Ayuda con esta funcion ???????
Código (cpp) [Seleccionar]
void grabar_fichero (){

     int f,c;
     bodega = fopen("price1.dat", "wb");
     if (bodega == NULL){
        printf ("\nERROR: No se ha podido abrir el archivo pricemat ");
        system("pause");
        exit(0);
     }
     else{
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.blanco[f][c], sizeof(pricemart.blanco), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.amarillo[f][c], sizeof(pricemart.amarillo), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.negro[f][c], sizeof(pricemart.negro), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.rojo[f][c], sizeof(pricemart.rojo), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.plata[f][c], sizeof(pricemart.plata), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.verde[f][c], sizeof(pricemart.verde), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.lila[f][c], sizeof(pricemart.lila), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.cafe[f][c], sizeof(pricemart.cafe), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.naranja[f][c], sizeof(pricemart.naranja), 1, bodega);
         }
         }
         for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.azul[f][c], sizeof(pricemart.azul), 1, bodega);
         }
         }
         fclose(bodega);
     }
}//fin de grabar


durasno

Hola! creo haber encontrado el error :)

La funcion fwrite, como ya sabes recibe 4 argumentos, el primero es un puntero que apunta a lo que se va a guardar y el segundo especifica el tamaño de lo que se guarda, aqui el problema. Tomemos como ejemplo pricemart.blanco:
blanco es una matriz de struct pasillos entonces blanco[f][c] es UNA struct pasillos. Por lo tanto si haces un sizeof(pricemart.blanco) y sizeof(pricemart.blanco[f][c]) tenes dos tamaños totalmente diferentes, el primero devuelve el tamaño de la matriz y el segundo el de una struct pasillos (en otras palabras estas guardando en un bloque de memoria grande algo muy chiquito)
Resumiendo deberia ser asi:
for (f=0; f<maxi; f++){
             for (c=0; c<maxi; c++){
             fwrite(&pricemart.blanco[f][c], sizeof(struct pasillos), 1, bodega);
         }
         }


Creo(no estoy seguro) que tambien funcionaria asi:
fwrite(pricemart.blanco, sizeof(pricemart.blanco), 1, bodega); // sin los for, sin nada


Si te funciona alguno de los dos, acordate de usar el mismo concepto para fread

Saludos
Ahorrate una pregunta, lee el man