From 04ccbc0a0d5a09a8522427bcb278fa1b96826d74 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 12 Feb 2002 05:58:42 +0000 Subject: [PATCH] fixes: bug#331 --- README.1.4.0pre9 | 5 ++--- bin/fs-setup | 6 +++--- httemplate/docs/admin.html | 11 +++++------ 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/README.1.4.0pre9 b/README.1.4.0pre9 index fa5c2c0da..8ff1e61f2 100644 --- a/README.1.4.0pre9 +++ b/README.1.4.0pre9 @@ -9,9 +9,8 @@ httemplate/docs/upgrade8.html instead install the FS perl modules and httemplate as per install.html or upgrade8.html -CREATE INDEX cust_pay2 ON cust_pay ( paynum ); -CREATE INDEX cust_pay3 ON cust_pay ( custnum ); -CREATE INDEX cust_pay4 ON cust_pay ( paybatch ); +CREATE INDEX cust_pay2 ON cust_pay ( custnum ); +CREATE INDEX cust_pay3 ON cust_pay ( paybatch ); Run bin/dbdef-create diff --git a/bin/fs-setup b/bin/fs-setup index 5f8059425..7c716d35e 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.76 2002-02-10 18:56:49 ivan Exp $ +# $Id: fs-setup,v 1.77 2002-02-12 05:58:42 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -487,7 +487,7 @@ sub tables_hash_hack { ], 'primary_key' => 'paynum', 'unique' => [ [] ], - 'index' => [ [] ], + 'index' => [ [ 'custnum' ], [ 'paybatch' ] ], }, 'cust_bill_pay' => { @@ -500,7 +500,7 @@ sub tables_hash_hack { ], 'primary_key' => 'billpaynum', 'unique' => [ [] ], - 'index' => [ [ 'paynum' ], [ 'custnum' ], [ 'paybatch' ] ], + 'index' => [ [ 'paynum' ], [ 'invnum' ] ], }, 'cust_pay_batch' => { #what's this used for again? list of customers diff --git a/httemplate/docs/admin.html b/httemplate/docs/admin.html index 1dab439e1..16d492095 100755 --- a/httemplate/docs/admin.html +++ b/httemplate/docs/admin.html @@ -50,14 +50,13 @@
  • From the Package View screen of the newly created package, choose (Add) to add the customer's service for this new package. -
  • Add your own domain, and note down the assigned Service #. +
  • Add your own domain.
  • Go back to View/Edit service definitions on the main menu, and - Add a new service definition with Table svc_acct. Put - the Service # for your domain in the domsvc Modifier. Set - Fixed to define a service locked-in to this domain, or Default - to define a service which may select from among this domain and the - customer's domains. + Add a new service definition with Table svc_acct. + Select your domain in the domsvc Modifier. Set Fixed to define + a service locked-in to this domain, or Default to define a service + which may select from among this domain and the customer's domains.
  • Create at least POP (Point of Presence) by selecting -- 2.11.0