1234567891011 |
- #!/bin/sh
- #mix phx.gen.html Accounting Stk stks stock_code:references:stocks stock_name:string qty:decimal price:decimal
- #mix phx.gen.html Accounting Point points point_code:string point_name:string branch_code:string mgmt_code:string type:string
- #mix phx.gen.html Accounting Ptrans ptrans date:utc_datetime source_code:references:points target_code:references:points
- #mix phx.gen.html Accounting Stocktrans stocktrans stock_code:references:stocks doc_no:string trans_date:utc_datetime price:decimal price_vat:decimal vat:decimal source_code:references:points target_code:references:points
- # dil ayarları
- # giom/priv/gettext/default.pot dosyasına ilgili bölümleri ekle,
- # sonra bu komutu verilerek hedef dil dosyası oluşturulur.
- mix gettext.merge priv/gettext --locale tr
|